diff --git a/assets/scss/_common.scss b/assets/scss/_common.scss index 9dbb3f9..66e2030 100644 --- a/assets/scss/_common.scss +++ b/assets/scss/_common.scss @@ -154,12 +154,6 @@ input[type="tel"] { - - - - - - .mt-10 { margin-top: 20px; } @@ -252,52 +246,9 @@ input[type="tel"] { .title { padding: 20px 0 30px; - h2 { - font-size: 18px; - text-align: center; - text-transform: uppercase; - letter-spacing: 2px; - } } -.section-title { - margin-bottom: 20px; - - @include tablet { - margin-bottom: 10px; - } - - h2 { - text-transform: uppercase; - font-weight: 400; - margin: 0px; - padding: 10px 0px; - font-size: 3em; /* Standard Schriftgröße für h2 */ - - @media (max-width: 768px) { - font-size: 1.5em; /* Kleinere Schriftgröße für mobile Geräte */ - } - - @media (max-width: 480px) { - font-size: 1.2em; /* Noch kleinere Schriftgröße für sehr kleine Geräte */ - } - } - - p { - font-style: italic; - color: darken($light, 57.64); - font-family: $font-secondary; - font-size: 1em; /* Standard Schriftgröße für p */ - - @media (max-width: 768px) { - font-size: 0.9em; /* Kleinere Schriftgröße für mobile Geräte */ - } - - @media (max-width: 480px) { - font-size: 0.8em; /* Noch kleinere Schriftgröße für sehr kleine Geräte */ - } - } -} + @@ -324,18 +275,6 @@ input[type="tel"] { .block { text-align: center; - h1 { - color: $white; - font-weight: 200; - letter-spacing: 0.5em; - margin-top: 20; - margin-bottom: 10; - text-transform: capitalize; - } - - p { - color: $white; - } } } @@ -343,30 +282,9 @@ input[type="tel"] { .heading { padding-bottom: 60px; text-align: center; - - h2 { - color: $black; - font-size: 30px; - line-height: 40px; - font-weight: 400; - } - - p { - font-size: 18px; - line-height: 40px; - color: lighten( $black, 16.078); - font-weight: 300; - } } - - - - - - - .page-wrapper { padding: 70px 0; @@ -483,8 +401,6 @@ input[type="tel"] { } select { - -webkit-appearance: none; - -moz-appearance: none; cursor: pointer; border: none; padding: 0; @@ -675,7 +591,7 @@ span.cloaked-e-mail:before { float: none; } } -/* copy from here */ +/* Maus und Mausrad*/ .scrolldown { --sizeX: 30px; --sizeY: 50px; diff --git a/assets/scss/_typography.scss b/assets/scss/_typography.scss index 8f6fda8..bc00e32 100644 --- a/assets/scss/_typography.scss +++ b/assets/scss/_typography.scss @@ -1,87 +1,127 @@ -// Fonts - -@font-face { - font-family: 'Open Sans'; - src: local('Open Sans'), local('OpenSans'), url('/static/fonts/OpenSans-SemiboldItalic.woff2') format('woff2'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'Open Sans Semibold'; - src: local('Open Sans Semibold'), local('OpenSansSemibold'), url('/static/fonts/OpenSans-Semibold.woff2') format('woff2'); - font-weight: normal; - font-style: normal; -} - - - - -// Using Variables for Font Families -$font-primary: 'Open Sans', sans-serif; -$font-secondary: 'Open Sans Semibold', sans-serif; - - +// =========================== +// TYPOGRAPHY – Schriftarten & Textstile +// =========================== body { - line-height: 1.5; - font-family: $font-primary; + font-family: 'Open Sans', sans-serif; + font-size: 16px; + line-height: 1.6; + color: #222; -webkit-font-smoothing: antialiased; - + -moz-osx-font-smoothing: grayscale; } -h1, -h2, -h3, -h4, -h5, -h6 { - font-family: $font-secondary; +.hero-subtitle { + font-size: clamp(1.25rem, 2.5vw, 1.75rem); + text-align: center; + color: $text-dark; + text-transform: uppercase; + letter-spacing: 0.12em; + line-height: 1.4; + margin-top: 1rem; } -h1, -h2, -h3, -h4, -h5, -h6 { - font-weight: 400; -} + +// --------------------------- +// Überschriften-Stile +// --------------------------- h1 { - font-size: $h1; - - @include tablet { - font-size: $h1-md; - } - - @include mobile { - font-size: $h2; - } - - @include mobile-xs { - font-size: $h2-md; - } + font-size: clamp(2.5rem, 5vw, 4rem); // ~32px auf Desktop + font-weight: 600; + line-height: 1.3; + margin-bottom: 1rem; + color: black //#046e6e; } -h2 { - font-size: $h2; +h1.page-title { + font-size: clamp(2.5rem, 6vw, 4rem); + margin-top: 2rem; + text-transform: capitalize; +} - @include mobile { - font-size: $h2-sm; - } + +h2 { + font-size: clamp(2.5rem, 5vw, 4rem); // ~32px auf Desktop + font-weight: 600; + line-height: 1.3; + margin-bottom: 1rem; + color: #046e6e; } h3 { - font-size: $h3; + font-size: clamp(2rem, 3vw, 2.5rem); // Reaktionsfähig statt fix + font-style: italic; + font-weight: 400; + line-height: 1.4; + margin-bottom: 5rem; // Erhöht den Abstand nach h2 + color:black; } h4 { - font-size: $h4; + font-size: clamp(1.8rem, 1.8vw, 2rem); + font-weight: normal; + line-height: 1.6; + margin-bottom: 1rem; + color: inherit; + color: #F5A623; +} + + +p { + font-style: normal; + font-size: clamp(1.5rem, 1.5vw, 1.8rem); + margin-bottom: 1.25rem; + line-height: 1.6; +} + + +// --------------------------- +// Textausrichtung +// --------------------------- + +.text-left { text-align: left; } +.text-right { text-align: right; } +.text-center { text-align: center; } +.text-justify { text-align: justify; } + +// --------------------------- +// Text-Elemente +// --------------------------- + +strong, b { + font-weight: 700; } p { - color: darken( $light, 49.41); - font-size: $font-size; - font-family: $font-secondary; + margin-bottom: 1.25rem; +} + +// --------------------------- +// Listen +// --------------------------- + +ul, ol { + padding-left: 1.5rem; + margin-bottom: 1.5rem; +} + +li { + margin-bottom: 0.5rem; + line-height: 1.6; +} + +// --------------------------- +// Links +// --------------------------- + +a { + color: #046e6e; + text-decoration: none; + transition: color 0.3s ease; +} + +a:hover { + color: #F5A623; + text-decoration: underline; } diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss index 2338712..7d6fa47 100644 --- a/assets/scss/custom.scss +++ b/assets/scss/custom.scss @@ -1,322 +1,1227 @@ -// Add your custom code - -.title-custom { - color: #046e6e; +/* ========== Typografie & Basis ========== */ +.hero-section { + width: 100%; + text-align: center; + padding: 0 1rem; } -.text-center { - text-align: center; - } - - .text-justify { - text-align: justify; - } +.hero-title { + font-size: clamp(1.8rem, 4vw, 4rem); + font-weight: 400; + line-height: 1.2; + color: #046e6e; + word-break: normal; + hyphens: none; +} - - - -/* Reduziert den Abstand zwischen den Sections */ +/* ========== Vereinheitlichte Section-Abstände ========== */ section { - margin-bottom: 0px; /* Anpassung nach Bedarf */ - } - - /* Zusätzliche optionale Stile für eine bessere Darstellung */ - #welcome.section, #service.section { - padding-top: 90px; /* Anpassung nach Bedarf */ - padding-bottom: 4px; /* Anpassung nach Bedarf */ - } + margin-bottom: 0; +} - .text-justify { - text-align: justify; - } - - .description { - font-size: 22px; /* Standard Schriftgröße */ - line-height: 1.5; - padding-top: 90px; /* Anpassung nach Bedarf */ - padding-bottom: 1px; /* Anpassung nach Bedarf */ - - @media (max-width: 768px) { - font-size: 18px; /* Kleinere Schriftgröße für Tablets */ - padding-top: 70px; /* Anpassung nach Bedarf */ - padding-bottom: 1px; /* Anpassung nach Bedarf */ - } - - @media (max-width: 480px) { - font-size: 16px; /* Noch kleinere Schriftgröße für Handys */ - padding-top: 50px; /* Anpassung nach Bedarf */ - padding-bottom: 1px; /* Anpassung nach Bedarf */ - } - } - - - .facts .fact-item { - padding: 15px; /* Abstand um die Bilder */ - } - - - - .facts .fact-item { - padding: 15px; /* Abstand um die Bilder */ - } - - .fact-image { - height: 250px; /* Einheitliche Höhe für alle Bilder */ - width: auto; /* Breite automatisch anpassen, um das Seitenverhältnis beizubehalten */ - object-fit: contain; /* Bild innerhalb der festgelegten Höhe zuschneiden, um das Seitenverhältnis beizubehalten */ - border-radius: 8px; /* Abgerundete Ecken für die Bilder */ - box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten */ - } - - .custom-background { - background-size: cover; - background-position: center center; - background-repeat: no-repeat; - } +.section { + padding-top: 90px; + padding-bottom: 90px; + margin-top: 80px; + margin-bottom: 80px; +} - - - .service-arrow .block { - display: flex; - align-items: center; - justify-content: space-between; - } - - .service-content { - flex: 1; - } - - .service-icon { - margin-right: 15px; /* Abstand nach Bedarf anpassen */ - } - - .service-image { - margin-left: 15px; /* Abstand nach Bedarf anpassen */ - } - - .service-image img { - max-width: 150px; /* Maximale Breite des Bildes anpassen */ - height: auto; +/* ========== Beschreibung ========== */ +.description { + font-size: 22px; + line-height: 1.5; + padding-top: 90px; + padding-bottom: 1px; + + @media (max-width: 768px) { + font-size: 18px; + padding-top: 70px; } + @media (max-width: 480px) { + font-size: 16px; + padding-top: 50px; + } +} - .bg-service1 { - background-color: #8bcfd6; /* Beispielhafte Farbe für primary-dark */ - } - .bg-service2 { - background-color: #6baeb5; /* Beispielhafte Farbe für primary-dark */ - } - .bg-service3 { - background-color: #8bcfd6; /* Beispielhafte Farbe für primary-dark */ - } - .bg-service4 { - background-color: #6baeb5; /* Beispielhafte Farbe für primary-dark */ - } - .bg-service5 { - background-color: #8bcfd6; /* Beispielhafte Farbe für primary-dark */ - } - .bg-service6 { - background-color: #6baeb5; /* Beispielhafte Farbe für primary-dark */ - } - .bg-service7 { - background-color: #8bcfd6; /* Beispielhafte Farbe für primary-dark */ - } - .bg-service8 { - background-color: #6baeb5; /* Beispielhafte Farbe für primary-dark */ - } +/* ========== Fakten ========== */ +.facts .fact-item { + padding: 15px; +} - .fixed-width { - width: 1200px; /* Feste Breite, die du anpassen kannst */ - height: auto; /* Höhe wird automatisch angepasst, um das Seitenverhältnis beizubehalten */ +.fact-image { + height: 250px; + width: auto; + object-fit: contain; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); +} + +/* ========== Hintergründe ========== */ +.custom-background { + background-size: cover; + background-position: center; + background-repeat: no-repeat; +} + +.gif-background { + background-image: url('/images/BackgroundAnimation.svg'); + background-repeat: no-repeat; + position: relative; + background-size: cover; + background-position: center 50%; + + @media (max-width: 991px) { + background-size: 120% auto; + background-position: center 40%; } - .service-arrow .block { - display: flex; - align-items: center; - justify-content: space-between; - padding: 20px; /* Optional: Padding hinzufügen */ - border-radius: 100px; /* Optional: Abgerundete Ecken hinzufügen */ - color: #8a0909; /* Optional: Textfarbe auf Weiß setzen */ - } - - .service-icon { - margin-right: 0px; /* Abstand nach Bedarf anpassen */ - } - - .service-content { - flex: 1; - } - - .service-image { - margin-left: 0px; /* Abstand nach Bedarf anpassen */ - } - - - - - - - - .fixed-text { - width: 600px; /* Feste Breite für den Text */ - margin-right: 15px; /* Optional: Abstand nach Bedarf anpassen */ + @media (max-width: 575px) { + background-size: 180% auto; + background-position: center 50%; } - .service-image img { - max-width: 600px; /* Maximale Breite des Bildes anpassen */ - height: auto; - margin: 0; /* Entfernt zusätzliche Margins */ - padding: 0; /* Entfernt zusätzliches Padding */ - border: none; /* Entfernt jegliche Standardrahmen */ - display: block; /* Verhindert zusätzliche Ränder bei inline-block-Elementen */ - } - - .page-title::before { + &::after { content: ''; position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: #ffffff; /* Weiß als Hintergrundfarbe */ - z-index: -1; /* Sicherstellen, dass es hinter dem Inhalt liegt */ - } - - - - - - - - - - - - - - .service-grid { - display: grid; - gap: 30px; /* 40px Abstand sowohl horizontal als auch vertikal */ - grid-template-columns: repeat(3, 1fr); - /* => Standard: 3 Spalten für größere Bildschirme */ - } - - @media (max-width: 992px) { - .service-grid { - grid-template-columns: repeat(2, 1fr); - /* => mittlere Screens: nur 2 Spalten */ + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(255, 255, 255, 0.8); + + @media (max-width: 575px) { + background-color: rgba(255, 255, 255, 0.5); } } +} + +/* ========== Service-Layout ========== */ +.service-arrow .block { + display: flex; + align-items: center; + justify-content: space-between; + padding: 20px; + border-radius: 100px; + color: #8a0909; +} + +.service-content { + flex: 1; +} + + +.service-image { + margin: 0; - @media (max-width: 576px) { - .service-grid { - grid-template-columns: 1fr; - /* => kleine Screens: 1 Spalte */ - } - } - - /* Ab hier das Zoom-/Overlay-Setup (identisch wie vorher) */ - .service-item-fixed { - width: 100%; - height: auto; /* Oder "auto" falls die Höhe flexibel sein soll */ - position: relative; - overflow: hidden; - border-radius: 10px; /* Abgerundete Ecken */ - } - - .zoom-wrap { - width: 100%; - height: 100%; - position: relative; - transition: transform 0.3s ease; - } - - .service-item-fixed:hover .zoom-wrap { +} + +.service-image img { + max-width: 600px; + height: auto; + display: block; +} + +/* Farbvarianten für Services */ +.bg-service1, +.bg-service3, +.bg-service5, +.bg-service7 { + background-color: #8bcfd6; +} + +.bg-service2, +.bg-service4, +.bg-service6, +.bg-service8 { + background-color: #6baeb5; +} + +/* Service-Gitter */ +.service-grid { + display: grid; + gap: 1.5rem; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + justify-content: center; + align-items: stretch; + margin: 0 auto; + max-width: 1200px; + padding: 0 1rem; +} + +.service-item-fixed { + width: 100%; + border-radius: 10px; + overflow: hidden; + position: relative; +} + +.zoom-wrap { + transition: transform 0.3s ease; + width: 100%; + height: 100%; + position: relative; + + &:hover { transform: scale(1.06); } - - .zoom-wrap a { - display: block; /* Stellt sicher, dass der Link das gesamte umschlossene Element abdeckt */ - text-decoration: none; /* Entfernt die Unterstreichung des Links */ - color: inherit; /* Erbt die Textfarbe, um sicherzustellen, dass der Linktext stilistisch passt */ - } - .zoom-wrap img { + img { width: 100%; height: 100%; object-fit: cover; display: block; } - -/* Das "dunkle Overlay" */ -.zoom-wrap .overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - background: rgba(0, 0, 0, 0.4); /* dunkler Schleier (30% schwarz) */ - z-index: 1; /* Overlay unter dem Text, aber über dem Bild */ - pointer-events: auto; /* Stellt sicher, dass das Overlay klickbar ist */ + + a { + display: block; + text-decoration: none; + color: inherit; + } + + .overlay { + position: absolute; + top: 0; right: 0; bottom: 0; left: 0; + background: rgba(0, 0, 0, 0.4); + z-index: 1; + } } +.overlay-text { + position: absolute; + top: 50%; left: 50%; + transform: translate(-50%, -50%); + color: #fff; + font-size: 2.3em; + font-weight: bold; + text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); + z-index: 2; +} + +/* ========== Zusatz-Layouts ========== */ +.spacer-lg { + height: 0px; +} + +.service-item { + position: relative; + overflow: hidden; + border-radius: 8px; + + img { + width: 100%; + display: block; + } + + .overlay { + position: absolute; + inset: 0; + background: rgba(0, 0, 0, 0.3); + } + .overlay-text { + font-size: clamp(2rem, 2vw, 3rem); + } +} + +.info-card { + text-align: center; + padding: 1rem; + + i { + font-size: 2rem; + margin-bottom: 0.5rem; + } + + h3 { + font-weight: 600; + margin-top: 0.5rem; + margin-bottom: 0.25rem; + font-size: 1.2rem; + color: #046e6e; + } + + p { + font-size: 1rem; + color: #333; + } +} +/* ========== WHY AMPERION ========== */ +.why-grid { + display: grid; + gap: 2rem; + grid-template-columns: repeat(3, minmax(0, 1fr)); + align-items: stretch; +} +@media (max-width: 991.98px) { .why-grid { grid-template-columns: repeat(2, 1fr); } } +@media (max-width: 575.98px) { .why-grid { grid-template-columns: 1fr; } } + +.service-card { + position: relative; + display: flex; + flex-direction: column; + height: 100%; + background: #fff; + padding: 1.65rem 1.5rem; + border-radius: 14px; + box-shadow: 0 4px 12px rgba(0,0,0,.05); + transition: box-shadow .25s ease; + text-align: center; + cursor: default; /* kein Hand-Cursor -> kein Link-Feeling */ +} + +/* dezentes Hover-Feedback */ +.service-card::after { + content: ''; + position: absolute; inset: 0; + border-radius: inherit; + background: radial-gradient(120% 100% at 50% 0%, rgba(245,166,35,.10), rgba(245,166,35,0) 60%); + opacity: 0; transition: opacity .25s ease; + pointer-events: none; +} +.service-card:hover { + box-shadow: 0 10px 28px rgba(0,0,0,.08); +} +.service-card:hover::after { + opacity: .04; /* sehr dezent */ +} + +/* Icon */ +.service-icon { + width: 56px; height: 56px; + object-fit: contain; + margin: 0 auto .85rem auto; + display: block; + transform-origin: center; +} + +/* Titel & Text */ +.service-card-title { + font-weight: 700; + margin: .25rem 0 .5rem; +} +.service-card-description { + line-height: 1.65; + margin: 0; + color: #333; +} + +/* 1) Beim Einblenden (AOS setzt .aos-animate) kurzer, sauberer Pop-in */ +@keyframes amp-pop { + 0% { transform: scale(.92); opacity: 0; } + 60% { transform: scale(1.02); opacity: 1; } + 100% { transform: scale(1); } +} +.service-card.aos-animate .service-icon { + animation: amp-pop .45s cubic-bezier(.2,.9,.2,1) both; +} + +/* 2) Dezentes „Atmen“ (idle), startet erst nach dem Pop-in */ +@keyframes amp-breathe { + 0%, 100% { transform: translateY(0); } + 50% { transform: translateY(-2.5px); } +} +.service-card.aos-animate .service-icon { + /* zweite Animation hängt sich hinten dran */ + animation: + amp-pop .45s cubic-bezier(.2,.9,.2,1) both, + amp-breathe 7s ease-in-out .45s infinite; +} + +/* Reduced motion respektieren */ +@media (prefers-reduced-motion: reduce) { + .service-card, .service-card::after { transition: none !important; } + .service-card .service-icon { animation: none !important; } +} + + +/* ========== Container & Layout ========== */ +.my-container { + width: 80%; + margin: 0 auto; +} + +.custom-container { + max-width: 1800px; + margin: 0 auto; + padding-left: 30px; + padding-right: 30px; +} + +.fixed-width { + max-width: 1200px; + margin: 0 auto; +} + +.fixed-text { + max-width: 600px; + margin-right: 15px; +} + +/* ========== Titel mit Hintergrund ========== */ +.page-title::before { + content: ''; + position: absolute; + top: 0; left: 0; + width: 100%; height: 100%; + background-color: #ffffff; + z-index: -1; +} + +/* ========== Bildkomponenten & Icons ========== */ +.custom-image { + width: 100px; + max-width: 70%; + height: auto; +} + +.custom-title { + color: #046e6e; +} + +/* ========== Hover Links ========== */ +.hover-link { + transition: color 0.3s ease; + + &:hover { + color: #F5A623; + } +} + +.about-cta { + color: #046e6e; /* Türkis */ + font-weight: 700; + text-decoration: none; + border-bottom: 2px solid transparent; + transition: color 0.2s ease, border-color 0.2s ease; +} + +.about-cta:hover, +.about-cta:focus { + color: #F5A623; /* Orange */ + border-bottom-color: #F5A623; +} + + + +/* ========== Mehrwerte ========== */ +.mehrwerte-grid { + display: grid; + gap: 0; + grid-template-columns: repeat(1, 1fr); + + @media (min-width: 768px) { + grid-template-columns: repeat(2, 1fr); + } + + @media (min-width: 1200px) { + grid-template-columns: repeat(4, 1fr); + } +} + +.mehrwerte-box { + display: flex; + flex-direction: column; + justify-content: space-between; + height: 100%; + padding: 30px; + border-radius: 8px; + transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; + + &:hover { + background-color: lighten(#004d4d, 10%); + transform: translateY(-4px); + box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); + + h4, p { + color: #000 !important; + } + } + + h4, p { + color: #000 !important; + transition: color 0.3s ease; + } +} + +/* ========== Gründerteam & Intro-Text ========== */ +.container-fluid { + max-width: 100%; + padding-left: 5vw; + padding-right: 5vw; +} + +#about-intro .intro-text { + max-width: 200ch; + hyphens: auto; + -webkit-hyphens: auto; + overflow-wrap: anywhere; + margin-bottom: 1rem; + } + #about-intro .intro-text p, + #about-intro .intro-text li { + margin-bottom: 1rem; + } + +/* ========== Logo Animation ========== */ +.logo-container { + width: 80%; + margin: 0 auto; + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + gap: 20px; +} + +.frame1 { + flex: 0 0 40%; + display: flex; + justify-content: center; + align-items: center; +} + +.frame2 { + flex: 0 0 60%; + display: flex; + justify-content: center; + align-items: center; +} + +.banner-logo { + max-width: 100%; + height: auto; + opacity: 0; +} + +/* Animationen */ +.frame1 .banner-logo { + animation: moveIn 1s forwards; +} + +.frame2 .banner-logo { + animation: moveIn 1s 0.5s forwards; +} + +@keyframes moveIn { + from { + transform: translateX(50px); + opacity: 0; + } + to { + transform: translateX(0); + opacity: 1; + } +} + +@keyframes fadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } +} + +.fade-in-title { + opacity: 0; + animation: fadeTitle 1.5s forwards 1s; +} + +@keyframes fadeTitle { + to { opacity: 1; } +} + +@media (max-width: 768px) { + .logo-container { + flex-direction: column; + width: 90%; + } + .frame1, .frame2 { + flex: 0 0 auto; + width: 100%; + margin-bottom: 20px; + } +} +/* ========== Body Base (aus style.scss) ========== */ +body { + font-family: Arial, sans-serif; + text-align: center; + background-color: #ffffff; + margin: 0; + padding: 20px; +} + +/* Orange-Hover für Section-Grid (zoom-Variante) */ +#leistungen-fokusthemen .service-item { + position: relative; +} + +#leistungen-fokusthemen .service-item .overlay-text { + transition: color 0.25s ease; +} + +#leistungen-fokusthemen .service-item:hover .overlay-text { + color: #F5A623; /* Akzentfarbe */ +} + +/* Abstand zwischen den beiden Grids */ +#leistungen-fokusthemen .grid-spacer { + height: 4rem; +} +@media (max-width: 992px) { + #leistungen-fokusthemen .grid-spacer { + height: 2.5rem; + } +} + +/* Bild unterhalb von "Darum AMPERION" */ +.darum-image-wrapper { + margin-top: 4rem; +} + +/* ===== Über AMPERION Section ===== */ + +/* Hintergrundfarbe */ +.bg-light-grey { + background-color: #f3f3f3; +} + +/* Grundlayout der Zeile */ +#about .about-row { + min-height: 400px; +} + +/* Bildbereich */ +#about .about-image-wrap { + width: 100%; + display: flex; + align-items: flex-end; /* Bild unten ausrichten */ + padding-top: 30px; +} +#about .about-image { + width: 100%; + max-width: clamp(200px, 38vw, 300px); + height: auto; + object-fit: contain; + margin-left: auto; /* rechtsbündig in Spalte */ +} + +/* Textbereich Abstände */ +#about .text-left p { + margin-bottom: 1rem; +} + +/* Link-Styling: Standard Türkis, Hover Orange */ +/* -> auch wenn in oder gewrappt */ +#about .text-left a, +#about .text-left b a, +#about .text-left strong a { + color: var(--amp-primary) !important; /* Türkis */ + font-weight: 700; + text-decoration: none; + border-bottom: 2px solid transparent; + transition: color 0.2s ease, border-color 0.2s ease; +} + +#about .text-left a:hover, +#about .text-left b a:hover, +#about .text-left strong a:hover, +#about .text-left a:focus { + color: var(--amp-accent) !important; /* Orange */ + border-bottom-color: var(--amp-accent); +} + +#about .text-left a:focus-visible, +#about .text-left b a:focus-visible, +#about .text-left strong a:focus-visible { + outline: 2px dashed var(--amp-accent); + outline-offset: 2px; +} +/* ===== Affiliations unter "Darum AMPERION" ===== */ + +.darum-aff-row{ + display:flex; + align-items:center; + justify-content:center; + gap:clamp(1rem, 3vw, 3rem); /* etwas enger */ + flex-wrap:wrap; + margin-top:clamp(3rem, 3vw, 5rem); /* kompakter */ +} + +.aff-group{ + display:flex; + align-items:center; + justify-content:center; + gap:clamp(.5rem, 1.5vw, 1rem); +} + +/* Linker Block (Ingenieurbüros etc.) */ +.aff-caption{ + margin:0 0 .5rem 0; + font-size:clamp(.85rem, 1vw, .95rem); + color:#6b7280; + text-align:left; +} + +.aff-logos{ + display:flex; + align-items:center; + gap:clamp(.5rem, 1vw, .75rem); + flex-wrap:wrap; +} + +/* Beide Logos gleich groß machen */ +.aff-logos img, +.aff-right .aff-pva-logo{ + height:120px; /* Desktop-Höhe */ + width:auto; + display:block; + object-fit:contain; +} + +/* Rechter Block: Nur Logo */ +.aff-right{ + display:flex; + align-items:center; + justify-content:center; + text-decoration:none; + color:inherit; +} + +/* Dezente Trennlinie zwischen links/rechts (nur Desktop) */ +@media (min-width: 900px){ + .aff-right{ + padding-left:clamp(0.75rem, 2vw, 2rem); + border-left:1px solid #e5e7eb; + } +} + +/* Mobil: keine Trennlinie / kein Einzug */ +@media (max-width: 899.98px){ + .aff-right{ + border-left:0; + padding-left:0; + } +} + +/* Mobile-Optimierung für sehr kleine Screens */ +@media (max-width: 480px){ + .aff-logos img, + .aff-right .aff-pva-logo{ + height:60px; /* kleinere Höhe auf Handy */ + width:auto; + } +} + +/* Fokus-Style für Tastaturbedienung */ +.aff-right:focus-visible{ + outline:2px dashed var(--amp-accent); + outline-offset:4px; +} + + + + +/* ======================================== + CTA SECTION - HYBRID DESIGN + ======================================== */ +.cta { + --cta-primary: #046e6e; /* Türkis */ + --cta-accent: #F5A623; /* Orange */ + + /* Button-Preset (hier zentral Größe steuern) */ + /* ÄNDERUNG: deutlich kleinere Buttons (Höhe, Breite, Schrift) */ + --btn-py: clamp(1rem, 1.2vw, 1.2em); /* vorher 1.8–2.5rem -> jetzt kompakter */ + --btn-px: clamp(1rem, 1.6vw, 1.2rem); /* vorher 1.8–2.5rem -> schmaler */ + --btn-fs: clamp(1rem, 1.6vw, 1.8rem);/* vorher 1.8–2.5rem -> p-nahe Größe */ + + position: relative; + overflow: hidden; + padding: clamp(6rem, 10vw, 12rem) 0; /* belassen; nur Buttons werden kleiner */ + background: #ffffff00; +} + +/* ===== HINTERGRUND ANIMATIONEN ===== */ +.cta__bg { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; +} + +/* Energie-Linien Container */ +.cta__energy-lines { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 0.6; +} + +/* Horizontale Energie-Linie */ +.energy-line-h { + position: absolute; + height: 1px; + background: linear-gradient(90deg, + transparent 0%, + var(--cta-accent) 10%, + var(--cta-accent) 90%, + transparent 100%); + width: 200px; + animation: energyFlowH 8s linear infinite; + + &::after { + content: ''; + position: absolute; + right: 0; + top: 50%; + transform: translateY(-50%); + width: 20px; + height: 3px; + background: var(--cta-accent); + box-shadow: 0 0 10px var(--cta-accent), 0 0 20px var(--cta-accent); + border-radius: 50%; + } + + &.energy-line-h1 { top: 20%; animation-duration: 6s; } + &.energy-line-h2 { top: 40%; animation-duration: 7s; animation-delay: 2s; } + &.energy-line-h3 { top: 60%; animation-duration: 8s; animation-delay: 4s; } + &.energy-line-h4 { top: 80%; animation-duration: 6.5s; animation-delay: 1s; } +} + +@keyframes energyFlowH { + 0% { left: -200px; opacity: 0; } + 10% { opacity: 1; } + 90% { opacity: 1; } + 100% { left: 100%; opacity: 0; } +} + +/* Vertikale Energie-Linie */ +.energy-line-v { + position: absolute; + width: 1px; + background: linear-gradient(180deg, + transparent 0%, + var(--cta-accent) 10%, + var(--cta-accent) 90%, + transparent 100%); + height: 150px; + animation: energyFlowV 10s linear infinite; + + &::after { + content: ''; + position: absolute; + bottom: 0; + left: 50%; + transform: translateX(-50%); + width: 3px; + height: 20px; + background: var(--cta-accent); + box-shadow: 0 0 10px var(--cta-accent), 0 0 20px var(--cta-accent); + border-radius: 50%; + } + + &.energy-line-v1 { left: 15%; animation-duration: 7s; animation-delay: 1s; } + &.energy-line-v2 { left: 35%; animation-duration: 9s; animation-delay: 3s; } + &.energy-line-v3 { left: 65%; animation-duration: 8s; animation-delay: 2s; } + &.energy-line-v4 { left: 85%; animation-duration: 7.5s; animation-delay: 4s; } +} + +@keyframes energyFlowV { + 0% { top: -150px; opacity: 0; } + 10% { opacity: 1; } + 90% { opacity: 1; } + 100% { top: 100%; opacity: 0; } +} + +/* Energie-Knoten (Kreuzungspunkte) */ +.energy-node { + position: absolute; + width: 6px; + height: 6px; + background: var(--cta-accent); + border-radius: 50%; + box-shadow: 0 0 10px var(--cta-accent); + animation: nodePulse 2s ease-in-out infinite; + + &.energy-node1 { top: 20%; left: 15%; animation-delay: 0s; } + &.energy-node2 { top: 40%; left: 35%; animation-delay: 0.5s; } + &.energy-node3 { top: 60%; left: 65%; animation-delay: 1s; } + &.energy-node4 { top: 80%; left: 85%; animation-delay: 1.5s; } + &.energy-node5 { top: 30%; left: 50%; animation-delay: 0.25s; } + &.energy-node6 { top: 70%; left: 25%; animation-delay: 0.75s; } +} + +@keyframes nodePulse { + 0%, 100% { transform: scale(1); opacity: 0.6; } + 50% { transform: scale(1.5); opacity: 1; } +} + +/* ===== CONTENT STYLES ===== */ +.cta .my-container { + position: relative; + z-index: 1; + + /* NEU: zentral breiter Container für diese Section + -> mehr Zeilenbreite, damit die H1 ab Desktop in 1 Zeile bleibt */ + width: 100%; + max-width: 1360px; /* vorher kein Limit hier – jetzt groß/“breit in der Mitte“ */ + margin-inline: auto; /* zentriert */ + padding-inline: clamp(16px, 3vw, 24px); /* etwas Innenabstand links/rechts */ +} + +.cta__wrap { + text-align: center; + /* ÄNDERUNG: mehr Inhaltsbreite, H1 bekommt mehr Platz */ + max-width: 90rem; /* vorher 72rem */ + margin: 0 auto; + padding: 0 clamp(1rem, 3vw, 2rem); +} + +/* Große Typografie */ +.cta__title { + margin: 0; + color: var(--cta-primary); + font-weight: 700; + letter-spacing: .2px; + position: center; + z-index: 2; + + /* NEU: ab Desktop nicht umbrechen -> bleibt einzeilig, wenn Platz da ist */ + @media (min-width: 1200px) { + white-space: nowrap; /* einzeilig erzwingen */ + } +} + +.cta__lead { + margin: .9rem auto 0; + color: #0f172a; + line-height: 1.55; + /* optional etwas breiter, wenn du willst – hier schon groß genug */ + max-width: 58rem; + position: relative; + z-index: 2; +} + +.cta__accent { + color: var(--cta-accent); + font-weight: 700; + display: block; + margin-top: 0.5rem; +} + +/* Buttons */ +.cta__actions { + display: flex; + flex-wrap: wrap; + justify-content: center; + gap: clamp(1rem, 2.4vw, 1.6rem); + margin-top: clamp(1.4rem, 3vw, 2.2rem); + position: relative; + z-index: 2; +} + +.cta__btn, +button.cta__btn{ + display:inline-flex; align-items:center; gap:.7rem; + padding:var(--btn-py,12px) var(--btn-px,22px); + border-radius:9999px; + background:#fff; + color:var(--cta-primary,#0a8f8d); + border:1px solid rgba(0,0,0,.06); + box-shadow:0 1px 3px rgba(0,0,0,.06); + text-decoration:none; + font-weight:700; + font-size:var(--btn-fs,1rem); + transition:background .15s ease, color .15s ease, box-shadow .2s ease, transform .04s ease; + position:relative; overflow:hidden; + -webkit-appearance:none; appearance:none; /* wichtig bei - - - -
-
-
-

- Global navigation -

-
-
-
-
- -
-
- -
- -
- - -
- Loading - -
-
-
- - -

© 2024 GitHub, Inc.

- -
-
-
- -
- - - - - - -
-
- - - - -
-
-
-

- Navigate back to -

- -
-
- -
-
- -
- - - - -
-
- - -
- - -
- - -
- - Create new... - - - - - - -Issues - - -Pull requests - -
- - - - - - Notifications - - - - -
- - - - - - - - - -
- -
- - - - - -
-
- - - - - - - - - - - -
- - - - - - - - -
- - - - - -
- - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - - - -
- Open in github.dev - Open in a new github.dev tab - Open in codespace - - - - - - - - - - - - - - - - - - -

Files

t

Latest commit

 

History

History
1 lines (1 loc) · 43.4 KB

cookieconsent.min.js

File metadata and controls

1 lines (1 loc) · 43.4 KB

Symbols

Find definitions and references for functions and other symbols in this file by clicking a symbol below or in the code.
r
  • func
    t
  • func
    d
  • func
    r
  • func
    t
  • func
    n
  • func
    o
  • class
    s
    • func
      constructor
  • func
    u
  • func
    d
  • func
    p
  • func
    w
  • func
    k
  • func
    i
  • func
    o
  • func
    c
  • func
    s
  • func
    get
  • func
    get
  • func
    t
  • func
    toString
  • func
    i
  • func
    i
    • func
      o
      • func
        c
        • func
          s
          • func
            r
            • func
              a
              • func
                l
  • class
    l
    • func
      constructor
      • func
        initializationComplete
        • func
          initializationError
          • func
            getCountryLaws
            • func
              isOpen
              • func
                close
  • func
    get
  • func
    set
  • func
    i
  • func
    o
  • func
    o
  • func
    c
  • func
    o
  • func
    c
  • func
    s
  • func
    i
    • func
      onload
  • func
    o
    • func
      onreadystatechange
  • func
    t
    • func
      n
      • func
        i
        • func
          o
          • func
            c
            • func
              s
              • func
                r
  • func
    get
  • func
    set
  • func
    init
  • func
    setMaxListeners
  • func
    getMaxListeners
  • func
    emit
  • func
    addListener
  • func
    prependListener
  • func
    once
  • func
    prependOnceListener
  • func
    removeListener
  • func
    removeAllListeners
  • func
    listeners
  • func
    rawListeners
  • func
    listenerCount
  • func
    eventNames
  • class
    c
    • func
      constructor
      • func
        get
        • func
          applyLaw
  • class
    s
    • func
      constructor
      • func
        getNextService
        • func
          getServiceByIdx
          • func
            locate
            • func
              setupUrl
              • func
                runService
  • func
    n
  • func
    ipinfo
    • func
      callback
  • func
    ipinfodb
    • func
      callback
  • func
    maxmind
    • func
      callback
  • class
    r
    • func
      constructor
      • func
        open
        • func
          close
          • func
            fadeIn
            • func
              afterFadeIn
              • func
                fadeOut
                • func
                  afterTransition
-
- - - - -
- -
- -
-
- -
- -
-

Footer

- - - - -
-
- - - - - © 2024 GitHub, Inc. - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - -
-
- - - diff --git a/deploy.ps1 b/deploy.ps1 new file mode 100644 index 0000000..e69de29 diff --git a/faq.html b/faq.html new file mode 100644 index 0000000..810f34c --- /dev/null +++ b/faq.html @@ -0,0 +1,22 @@ +{{ define "main" }} + +{{ partial "page-title.html" . }} + +
+
+
+
+

{{ .Title }}

+ {{ with .Params.subtitle }}{{ . | $.Page.RenderString (dict "display" "block") }}{{ end }} +

{{ i18n "last_update" }}: {{ time.Format ":date_long" .Lastmod }}

+

{{ i18n "faq_toc_title" }}

+ {{ .TableOfContents }} +
+
+ {{ .Content }} +
+
+
+
+ +{{ end }} diff --git a/layouts/_default/about.html b/layouts/_default/about.html index b9cb90b..baf0423 100644 --- a/layouts/_default/about.html +++ b/layouts/_default/about.html @@ -1,74 +1,293 @@ {{ define "main" }} - {{ partial "page-title.html" . }} -{{ with .Params.about }} + +{{ with .Params.intro_section }} {{ if .enable }} -
-
-
-
-
- {{ with .left_person }} - {{ with .name }}

{{ . | markdownify }}

{{ end }} - {{ with .description }}

{{ . | $.Page.RenderString (dict "display" "block") }}

{{ end }} - {{ end }} -
-
-
-
- Standard Image - Hover Image -
-
-
-
- {{ with .right_person }} - {{ with .name }}

{{ . | markdownify }}

{{ end }} - {{ with .description }}

{{ . | $.Page.RenderString (dict "display" "block") }}

{{ end }} - {{ end }} +
+

Ihr Partner für nachhaltige Energielösungen

+
+
+ + +
+
+ +
+ {{ .text | markdownify }} +
+ + +
+
+ +
+
+ +
{{ end }} {{ end }} -
+ + + +{{ with .Params.mission_vision }} +{{ if .enable }} +
-
+
+ +
+ +
+

Mission · Vision · Ziel

+

Die Grundpfeiler unserer Arbeit.

+
- - {{ with .Params.mission_vision }} - {{ if .enable }} -
-
-
+
+{{ end }} +{{ end }} + + + + + +
+
+
+
+

Was uns auszeichnet

+

AMPERION liefert echte Mehrwerte für Ihr Projekt.

+
+
+ +
+ {{ $delay := 0 }} + {{ $step := 100 }} + +
+ AMPERION ist ein Staatlich geprüftes Ingenieurbüro +

Staatlich geprüft & konessioniert

+

+ Ingenieurbüro und Elektrotechnikbetrieb – Planung und Prüfung mit Qualität & Sicherheit. +

+
+ +
+ Erfahrung & Innovation - Über 10 Jahre Praxis – kombiniert mit modernen Methoden und Tools. +

Erfahrung & Innovation

+

+ Über 10 Jahre Praxis – kombiniert mit modernen Methoden und Tools. +

+
+ +
+ Ganzheitlicher Ansatz - Technik, Wirtschaft & Umwelt von Beginn an zukunftssicher gedacht. +

Ganzheitlicher Ansatz

+

+ Technik, Wirtschaft & Umwelt – von Beginn an zukunftssicher gedacht. +

+
+ + +
+ Unabhängige Beratung - Herstellerneutral – wir empfehlen, was zu Ihrem Projekt wirklich passt. +

Unabhängige Beratung

+

+ Herstellerneutral – wir empfehlen, was zu Ihrem Projekt wirklich passt. +

+
- -{{ if .Params.cta.enable }} -{{ partial "cta.html" . }} + + + +{{ with .Params.about }} +{{ if .enable }} +
+
+ + +
+

Das AMPERION Gründerteam

+ +
+ + +
+
+ {{ with .left_person }} +
{{ .name | markdownify }}
+
+ {{ .description | $.Page.RenderString (dict "display" "block") }} +
+ {{ end }} +
+
+ + +
+
+ Das Gründerteam von Amperion: Experten für Energieplanung und nachhaltige Energiesysteme +
+
+ + +
+
+ {{ with .right_person }} +
{{ .name | markdownify }}
+
+ {{ .description | $.Page.RenderString (dict "display" "block") }} +
+ {{ end }} +
+
+ +
+
+
+{{ end }} +{{ end }} + + + +{{ $impressum := site.GetPage "page" "impressum" }} +{{ if .Params.cta.enable }} +
+ + +
+
+

+ Mehr Energie - Mit UNS! +

+

+ Ihr Weg zu nachhaltiger Energie beginnt hier. + Lassen Sie uns starten! +

+ + +
+
+
{{ end }} - {{ end }} + diff --git a/layouts/_default/agb.html b/layouts/_default/agb.html index 810f34c..a580727 100644 --- a/layouts/_default/agb.html +++ b/layouts/_default/agb.html @@ -5,14 +5,13 @@
-
-

{{ .Title }}

+
{{ with .Params.subtitle }}{{ . | $.Page.RenderString (dict "display" "block") }}{{ end }}

{{ i18n "last_update" }}: {{ time.Format ":date_long" .Lastmod }}

{{ i18n "faq_toc_title" }}

{{ .TableOfContents }}
-
+
{{ .Content }}
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 67b7617..2620cb2 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -1,70 +1,49 @@ + + + - + - {{ partial "head.html" . }} - - - - - - - - - {{ if hugo.IsProduction }} - {{ partialCached "style.html" . }} - {{ else }} - {{ partial "style.html" . }} - {{ end }} - - - - - + {{ partial "head.html" . }} + + + {{ if hugo.IsProduction }} + {{ partialCached "style.html" . }} + {{ else }} + {{ partial "style.html" . }} + {{ end }} - - {{ partial "header.html" . }} - {{ if hugo.IsProduction }} - {{ partialCached "preloader.html" . }} - {{ else }} - {{ partial "preloader.html" . }} - {{ end }} - - - -
- {{ block "main" . }}{{ end }} -
- - - - - - - - - {{ if hugo.IsProduction }} - {{ partialCached "footer.html" . }} - {{ partialCached "script.html" . }} - {{ else }} - {{ partial "footer.html" . }} - {{ partial "script.html" . }} - {{ end }} - + + {{ partial "header.html" . }} + {{ if hugo.IsProduction }} + {{ partialCached "preloader.html" . }} + {{ else }} + {{ partial "preloader.html" . }} + {{ end }} +
+ {{ block "main" . }}{{ end }} +
+ + {{ if hugo.IsProduction }} + {{ partialCached "footer.html" . }} + {{ partialCached "script.html" . }} + {{ else }} + {{ partial "footer.html" . }} + {{ partial "script.html" . }} + {{ end }} - \ No newline at end of file + diff --git a/layouts/_default/contact.html b/layouts/_default/contact.html index e48151e..90e01f7 100644 --- a/layouts/_default/contact.html +++ b/layouts/_default/contact.html @@ -1,80 +1,196 @@ {{ define "main" }} + {{ partial "page-title.html" . }} -{{ partial "page-title.html" . }} + {{/* ========= Datenquellen: Impressum > params.contact > params (alt) ========= */}} + {{ $impressum := site.GetPage "page" "impressum" }} -
-
- {{ with site.Params.contact.form }}{{ if .enable -}} -
-
-
-
-
- - + {{ $addr := or + (and $impressum $impressum.Params.location) + (or site.Params.contact.location site.Params.location) }} + + {{ $email := or + (and $impressum $impressum.Params.email) + (or site.Params.contact.email site.Params.email) }} + + {{/* phone1: deckt sowohl phone als auch phone1 ab (alt & neu) */}} + {{ $phone1 := or + (and $impressum $impressum.Params.telefon) + (or site.Params.contact.phone site.Params.contact.phone1 site.Params.phone site.Params.phone1) }} + + {{ $phone2 := or + (and $impressum $impressum.Params.telefon2) + (or site.Params.contact.phone2 site.Params.phone2) }} + + + +
+
+
+ + +
+
+
+

Kontakt

+
    + 📍{{ with $addr }} +
  • +
    {{ . | markdownify }}
    +
  • + {{ end }} + 📧{{ with $email }} +
  • +
    + {{ . }} +
    +
  • + {{ end }} + 📞{{ with $phone1 }} +
  • +
    + {{ . }} +
    +
  • + {{ end }} + {{ with $phone2 }} +
  • +
    + {{ . }} +
    +
  • + {{ end }} +
-
- - + +
+

Folgen Sie uns!

+
-
- - -
- {{ if .use_netlify -}} -
- -
- {{- end }} - {{ if .use_recaptcha -}} -
- -
- {{- end }}
-
-
-
- - + + +
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
- -
-
- -
- {{- end }}{{ end }} -
- {{ with site.Params.contact -}} -
-
-

{{ i18n "address_title" }}

-
    - {{ $add_address_descriptors := .address_descriptors }} - {{ with site.Params.location }}
  • {{ if $add_address_descriptors }}{{ i18n "location" | printf "%s: " }}{{ end }}
    {{ . | markdownify }}
  • {{ end }} - {{ with site.Params.email }}
  • {{ if $add_address_descriptors }}{{ i18n "email" | printf "%s: " }}{{ end }}{{ partial "cloak_email" . }}
  • {{ end }} - {{ with site.Params.phone }}
  • {{ if $add_address_descriptors }}{{ i18n "phone" | printf "%s: " }}{{ end }}{{ . }}
  • {{ end }} -
- + +
+ +
+
- {{- end }} - {{ if site.Params.gmap.enable -}} -
-
-
-
-
-
-
- {{- end }}
-
-
- -{{ end }} +
+ {{/* Reveal Init (falls global nicht vorhanden) */}} + + + +{{ end }} \ No newline at end of file diff --git a/layouts/_default/danke.html b/layouts/_default/danke.html new file mode 100644 index 0000000..9c712df --- /dev/null +++ b/layouts/_default/danke.html @@ -0,0 +1,20 @@ + + + + + + Danke für deine Nachricht + + + + +

Vielen Dank!

+

Deine Nachricht wurde erfolgreich gesendet. Du wirst in 5 Sekunden weitergeleitet.

+

Zurück zu Amperion

+ + + diff --git a/layouts/_default/datenschutz.html b/layouts/_default/datenschutz.html index 51ce99e..bcf3e5d 100644 --- a/layouts/_default/datenschutz.html +++ b/layouts/_default/datenschutz.html @@ -5,24 +5,17 @@
-
-

{{ .Title }}

+
{{ with .Params.subtitle }}{{ . | $.Page.RenderString (dict "display" "block") }}{{ end }}

{{ i18n "last_update" }}: {{ time.Format ":date_long" .Lastmod }}

{{ i18n "faq_toc_title" }}

{{ .TableOfContents }}
-
+
{{ .Content }}
- -{{ if .Params.cta.enable }} -{{ partial "cta.html" . }} -{{ end }} - - {{ end }} diff --git a/layouts/_default/default.html b/layouts/_default/default.html new file mode 100644 index 0000000..851f438 --- /dev/null +++ b/layouts/_default/default.html @@ -0,0 +1,13 @@ +{{ define "main" }} + {{ partial "page-title.html" . }} + +
+
+
+
+ {{ .Content }} +
+
+
+
+{{ end }} diff --git a/layouts/_default/impressum.html b/layouts/_default/impressum.html index 8847186..299c483 100644 --- a/layouts/_default/impressum.html +++ b/layouts/_default/impressum.html @@ -4,31 +4,85 @@
-
-
- - - {{ range $index, $heading := .Params.headings }} - - - - - {{ end }} - -
- {{ $heading }} - +
+
+
+ + {{ range $index, $heading := .Params.headings }} +
+
+

{{ $heading }}

+
+
+
{{ index $.Params.contents $index | markdownify }} -
+
+
+
+ {{ end }} + +
- -{{ if .Params.cta.enable }} -{{ partial "cta.html" . }} -{{ end }} - + + + +{{ end }} \ No newline at end of file diff --git a/layouts/_default/index.html b/layouts/_default/index.html deleted file mode 100644 index 8665dc7..0000000 --- a/layouts/_default/index.html +++ /dev/null @@ -1,280 +0,0 @@ -{{ define "main" }} -
- -{{ with .Params.banner }} -{{ if .enable }} -
- - - - - - - - - -
-{{ end }} -{{ end }} - -
- - -{{ with .Params.about }} -{{ if .enable }} -
-
-
-
-
-
- {{ with .title }}

{{ . | markdownify }}

{{ end }} - {{ with .description }}{{ . | $.Page.RenderString (dict "display" "block") }}{{ end }} -
- {{ with .content }}{{ . | $.Page.RenderString (dict "display" "block") }}{{ end }} -
-
-
-
- Img -
-
-
-
-
-{{ end }} -{{ end }} - - -{{ with .Params.about }} -{{ if .enable }} -
-
- -
- {{ range .funfacts }} -
-
- {{ with .icon }}{{ end }} - {{ with .count }}

0

{{ end }} - {{ with .name }}{{ . }}{{ end }} -
-
- {{ end }} -
-
-
-{{ end }} -{{ end }} - - - - -
-
-
-
- -
- Bildbeschreibung -
-
-
- -
-

Unser Angebot

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit... Lorem ipsum dolor sit amet, consectetur adipiscing elit.. Lorem ipsum dolor sit amet, consectetur adipiscing elit.. Lorem ipsum dolor sit amet, consectetur adipiscing elit.. Lorem ipsum dolor sit amet, consectetur adipiscing elit..

-
- -
- Bildbeschreibung -
-
-
- -
-

Unser Angebot

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit... Lorem ipsum dolor sit amet, consectetur adipiscing elit.. Lorem ipsum dolor sit amet, consectetur adipiscing elit.. Lorem ipsum dolor sit amet, consectetur adipiscing elit.. Lorem ipsum dolor sit amet, consectetur adipiscing elit..

-
-
-
-
-
- - - - - -{{ with .Params.portfolio }} -{{ if .enable }} -
-
-
-
- {{ with .title }}

{{ . | markdownify }}

{{ end }} - {{ with .content }}{{ . | $.Page.RenderString (dict "display" "block") }}{{ end }} - {{ with .button }} - {{ if .enable }} - {{ .label }} - {{ end }} - {{ end }} -
-
-
-
-{{ end }} -{{ end }} - - - -{{ if .Params.service.enable }} -{{ partial "service.html" . }} -{{ end }} - - - -{{ if .Params.cta.enable }} -{{ partial "cta.html" . }} -{{ end }} - - - -{{ with .Params.funfacts }} -{{ if .enable }} -
-
-
-
- {{ with .title }}

{{ . | markdownify }}

{{ end }} - {{ with .description }}{{ . | $.Page.RenderString (dict "display" "block") }}{{ end }} -
-
-
-
-
-
    - {{ range .funfact_item }} -
  • - - {{ .name }} -

    0

    - {{ .name | markdownify }} -
  • - {{ end }} -
-
-
-
- -
-
-
-
-{{ end }} -{{ end }} - - - - - - - - - - - - - - -{{ end }} \ No newline at end of file diff --git a/layouts/_default/karriere.html b/layouts/_default/karriere.html new file mode 100644 index 0000000..51ef2ea --- /dev/null +++ b/layouts/_default/karriere.html @@ -0,0 +1,188 @@ +{{ define "main" }} +{{ partial "page-title.html" . }} + + + + +{{ $h := .Params.hero }} +{{ $img := or (and $h $h.image) .Params.image }} +{{ $alt := or (and $h $h.image_alt) (printf "Arbeiten bei %s" .Site.Title) }} + +
+
+
+
+

+ {{ if $h }} + {{ with $h.title }}{{ . }}{{ else }}Karriere bei {{ $.Site.Title }}{{ end }} + {{ else }} + Karriere bei {{ .Site.Title }} + {{ end }} +

+ {{ with $h }}{{ with .lead }} +
{{ . | markdownify }}
+ {{ end }}{{ end }} +
+ +
+ {{ with $img }} +
+ {{ $alt }} +
+ {{ end }} +
+
+
+
+ + +{{ with .Params.values }} +
+
+

Unsere Werte

+
+ {{ range $i, $v := . }} +
+
+ +

{{ $v.title }}

+

{{ $v.text }}

+
+
+ {{ end }} +
+
+
+{{ end }} + + +
+
+

Was wir bieten

+
+
+
    + {{ range .Params.benefits_left }} +
  • + + {{ . | markdownify }} +
  • + {{ end }} +
+
+
+
    + {{ range .Params.benefits_right }} +
  • + + {{ . | markdownify }} +
  • + {{ end }} +
+
+
+
+
+ + +{{ $impressum := site.GetPage "page" "impressum" }} +{{ $ctaEnabled := or (and .Params.cta .Params.cta.enable) (or .Params.cta_text .Params.cta_label) }} +{{ if $ctaEnabled }} +
+ + +
+
+

+ {{ .Params.cta_text | default "Gestalte die Energiewende mit uns." }} +

+ {{ with .Params.subtitle }}

{{ . }}

{{ else }} +

Wir freuen uns über deine Initiativbewerbung!

+ {{ end }} + +
+ {{ with .Params.cta_label }} + + {{ . }} + + {{ end }} + + {{ if $impressum }} + E-Mail senden + Anrufen + {{ end }} +
+ + +
+
+
+{{ end }} + + + + +{{ end }} diff --git a/layouts/_default/leistung.html b/layouts/_default/leistung.html new file mode 100644 index 0000000..88b0a76 --- /dev/null +++ b/layouts/_default/leistung.html @@ -0,0 +1,840 @@ +{{ define "main" }} +{{ partial "breadcrumbs.html" . }} +{{ partial "page-title.html" . }} + + +{{/* ==== BILDER SAMMELN (Front-Matter oder Auto-Discovery) ==== */}} +{{ $photos := .Params.images }} +{{ if not $photos }} + {{ $slug := .Params.slug | default .File.TranslationBaseName }} + {{ $cands := slice + (printf "static/images/leistungen/%s1.webp" $slug) + (printf "static/images/leistungen/%s2.webp" $slug) + }} + {{ $auto := slice }} + {{ range $cands }} + {{ if fileExists . }} + {{ $auto = $auto | append (dict "src" (replace . "static" "") "alt" $slug ) }} + {{ end }} + {{ end }} + {{ $photos = $auto }} +{{ end }} + +{{/* Erstes Bild für Hero, zweites fürs Ergebnis vormerken */}} +{{ $heroPhoto := cond (gt (len $photos) 0) (index $photos 0) nil }} +{{ $ergebnisPhoto := cond (gt (len $photos) 1) (index $photos 1) nil }} +{{ $.Scratch.Set "ergebnisPhoto" $ergebnisPhoto }} + + + + + + +
+
+
+ + +
+ {{ with $heroPhoto }} +
+ {{ .alt | default $.Title }} +
+ {{ end }} +
+ + +
+ {{ if .Content }} +
+ {{ .Content }} +
+ {{ end }} +
+
+ + + {{ with .Params.usp }} +
+ {{ range $i, $u := . }} +
+ +

{{ $u | markdownify }}

+
+ {{ end }} +
+ {{ end }} + +
+
+ + + + +{{ with .Params.features }} +
+ + + {{/* Store the features list and count */}} + {{ $features := . }} + {{ $totalFeatures := len $features }} + + + + + + + +
+{{ end }} + + + + + +{{ with .Params.outcomes }} +
+ + +
+
+ + +
+

Ergebnis & Mehrwert

+
    + {{ range . }} +
  • + + {{ . | markdownify }} +
  • + {{ end }} +
+
+ + +
+ {{ $erg := $.Scratch.Get "ergebnisPhoto" }} + {{ with $erg }} +
+ {{ .alt | default $.Title }} +
+ {{ else }} + {{ with $heroPhoto }} +
+ {{ .alt | default $.Title }} +
+ {{ end }} + {{ end }} +
+ +
+
+
+{{ end }} + +{{ partial "related.html" . }} + + + +{{ $impressum := site.GetPage "page" "impressum" }} +{{ $ctaEnabled := or (.Params.cta.enable) (or .Params.cta_text .Params.cta_label) }} +{{ if $ctaEnabled }} +
+ + + + +
+
+

+ {{ .Params.cta_text | default "Lassen Sie uns Ihre Vision mit unserer Expertise zur Realität machen." }} +

+ +
+ {{ with .Params.cta_label }} + + {{ . }} + + {{ end }} +
+ + + +
+
+
+{{ end }} + + + + + + + +{{ end }} diff --git a/layouts/_default/list.html b/layouts/_default/list.html index dd79d7e..6a0876b 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,5 +1,5 @@ {{ define "main" }} - +{{ partial "breadcrumbs.html" . }} {{ partial "page-title.html" . }} @@ -9,17 +9,29 @@
+ {{ $paginator := .Paginate .Data.Pages -}} {{ range $paginator.Pages -}} -
+
+ + +

+ {{ .Title }} +

+ +
-

{{ .Summary }}

- {{ i18n "read_more" }} +

{{ .Summary }}

+ {{ i18n "read_more" }}
-
+ {{- end }} @@ -47,61 +60,55 @@ {{ $lower_limit := (add $adjacent_links 1) -}} {{ $upper_limit := (sub $paginator.TotalPages $adjacent_links) -}} {{ if gt $paginator.TotalPages 1 -}} -
{{ partial "blog-sidebar.html" . }} @@ -112,7 +119,7 @@ {{ else -}} -{{ .Render "default" }} + {{ .Render "default" }} {{- end }} diff --git a/layouts/_default/render-image.html b/layouts/_default/render-image.html new file mode 100644 index 0000000..896c22a --- /dev/null +++ b/layouts/_default/render-image.html @@ -0,0 +1,8 @@ +{{- $alt := .Text | default .Title | default "AMPERION" -}} +{{ $alt }} +{{- if .Title }}
{{ .Title }}
{{ end -}} diff --git a/layouts/_default/service01.html b/layouts/_default/service01.html deleted file mode 100644 index e85afb2..0000000 --- a/layouts/_default/service01.html +++ /dev/null @@ -1,58 +0,0 @@ - - - -{{ define "main" }} - -{{ partial "page-title.html" . }} - - -{{ if or (eq .Section "post") (eq .Section "posts") (eq .Section "blog") (eq .Section "blogs") (eq .Section "news") (eq .Section "categories") (eq .Section "tags") }} - -
-
-
-
-
-

{{ .Title }}

- -
- {{ with .Params.image -}} - {{ $.Title }} - {{- end }} -
-
- {{ .Content }} -
- {{ with site.Params.DisqusShortname -}} -
- {{ template "_internal/disqus.html" . }} -
- {{- end }} -
-
-
- {{ partial "blog-sidebar.html" . }} -
-
-
-
- - -{{ else -}} -{{ .Render "default" }} -{{- end }} - - -{{ end }} \ No newline at end of file diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 1d40754..f7de454 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,7 +1,8 @@ {{ define "main" }} - +{{ partial "breadcrumbs.html" . }} {{ partial "page-title.html" . }} + {{ if or (eq .Section "post") (eq .Section "posts") (eq .Section "blog") (eq .Section "blogs") (eq .Section "news") (eq .Section "categories") (eq .Section "tags") }} @@ -26,12 +27,25 @@
{{ with .Params.image -}} - {{ $.Title }} - {{- end }} + {{ $img := . }} + {{ $static := printf "static/%s" (strings.TrimLeft "/" $img) }} + {{ $w := 0 }}{{ $h := 0 }} + {{ if fileExists $static }} + {{ with (imageConfig $static) }}{{ $w = .Width }}{{ $h = .Height }}{{ end }} + {{ end }} + {{ $.Title | plainify }} + {{- end }}
{{ .Content }}
+ {{ partial "related.html" . }} {{ with site.Params.DisqusShortname -}}
{{ template "_internal/disqus.html" . }} diff --git a/layouts/index.html b/layouts/index.html index 28d7745..9a663c4 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,355 +1,334 @@ {{ define "main" }} -Um den ersten Bereich der Seite beim Scrollen nach unten verschwinden zu lassen und beim Scrollen nach ganz oben wieder erscheinen zu lassen, kannst du JavaScript verwenden, um den Bereich zu verstecken oder anzuzeigen, basierend auf der Scroll-Position. Hier ist, wie du das machen kannst: -Schritt 1: Füge eine ID oder Klasse zum Header hinzu - -Füge eine ID oder Klasse zum
-Element hinzu, damit du es leicht mit JavaScript ansprechen kannst. -
- - {{ with .Params.banner }} - {{ if .enable }} -
-
- -
- -
- -
- -
- -
-
+ {{ if .enable }} + +
+
+ + +
+
+ +
+
+ +
+
- - -
- {{ with .title }} -

- {{ . | markdownify }} -

- {{ end }} - - {{ with .button }} - {{ if .enable }} - - {{ end }} - {{ end }} + +
+ {{ with .title }} +

{{ . | markdownify }}

+ {{ end }} + {{ with .button }} + {{ if .enable }} + -
- {{ end }} + {{ end }} + {{ end }} +
+
+ + {{ end }} {{ end }} - - - + - - - - -
- - -{{ if .Params.whyamperion.enable }} -{{ partial "whyamperion.html" . }} -{{ end }} - - - - - - - -{{ with site.GetPage "/service" }} -{{ with .Params.service }} -
- -
- -
- {{ with .title }}

{{ . | markdownify }}

{{ end }} + +
+
+
+ {{ partial "section-grid.html" (dict "page" "/service" "type" "zoom" "hideSection" true) }}
-
- {{ with .description }}

{{ . | markdownify }}

{{ end }} -
- -
- {{ range first 3 .service_item }} - - {{ end }} -
-
-
-{{ end }} -{{ end }} - - - -{{ with site.GetPage "/focustopic" }} -{{ with .Params.service }} -
-
-
- {{ with .title }}

{{ . | markdownify }}

{{ end }} -
-
- {{ with .description }}

{{ . | markdownify }}

{{ end }} -
-
- {{ range first 3 .service_item }} - - {{ end }} + +
+ {{ partial "section-grid.html" (dict "page" "/focustopic" "type" "zoom" "hideSection" true) }}
-{{ end }} -{{ end }} - -
- -{{ with site.GetPage "/why-amperion" }} -
-

{{ .Params.service.title | default "OUR SERVICES" }}

-

{{ .Params.service.description | default "Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts." | markdownify }}

-
- {{ range first 6 .Params.featured_service.service_item }} -
- {{ .name }} -

{{ .name }}

-

{{ .content1 | markdownify }} {{ .content | markdownify }}

+ +
+
+ +
+
+

Darum AMPERION

+

Kompetenz, auf die Sie bauen können – von der Idee bis zur Inbetriebnahme.

+
- {{ end }} + + +
+ {{ $delay := 0 }} + {{ $delayStep := 100 }} + +
+ Technische Planungskompetenz - Von der Idee zur bewilligten Ausführungsplanung +

Technische Planungskompetenz

+

+ Langjährige Erfahrung mit komplexer Energieplanung – normgerecht, effizient & zukunftssicher. +

+
+ +
+ Intelligente Energiesysteme - Schnittstellen im Griff: vom Baustart bis zur Inbetriebnahme +

Intelligente Energiesysteme

+

+ Von PV bis Speicher und Lastmanagement – für maximale Eigenversorgung und Netzverträglichkeit. +

+
+ +
+ Persönliche Betreuung - Mehr als Beratung: Wir machen Energieprojekte planbar & profitabel +

Persönliche Betreuung

+

+ Kurze Wege, schnelle Antworten – direkte Ansprechpartner, auch nach Projektabschluss. +

+
+ +
+ Reibungslose Projektabwicklung - Wir übernehmen die technische Koordination von Einreichung bis Ausschreibung. +

Reibungslose Projektabwicklung

+

+ Wir übernehmen die technische Koordination – von Einreichung bis Ausschreibung. +

+
+ +
+ Vernetzte Energiezukunft - Wir denken Energie ganzheitlich modular, digital und wachstumsfähig geplant. +

Vernetzte Energiezukunft

+

+ Wir denken Energie ganzheitlich – modular, digital und wachstumsfähig geplant. +

+
+ +
+ Präzise Systemplanung - Alle Komponenten exakt abgestimmt wirtschaftlich und regelkonform. +

Präzise Systemplanung

+

+ Alle Komponenten exakt abgestimmt – wirtschaftlich und regelkonform. +

+
+
+
+ + +
+ +
+
+ + Ingenieurbüros Österreich + +
+
+ + + + +
-{{ end }} - - -
- - - -{{ if .Params.contact.enable }} -{{ partial "cta.html" . }} -{{ end }} - - - - - + {{ with .Params.about }} {{ if .enable }} -
-
-
-
-
- {{ with .title }}

{{ . | markdownify }}

{{ end }} -
-
- {{ with .description }}

{{ . | markdownify }}

{{ end }} -
-
-
-
-
-
- {{ with .content }}{{ . | markdownify }}{{ end }}
- -
-
-
- Img -
-
-
-
-
-{{ end }} -{{ end }} - - - -
- -{{ if .Params.cta.enable }} -{{ partial "cta.html" . }} -{{ end }} - -
- -{{ with .Params.facts }} -{{ if .enable }} -
+
- {{ range .fact_item }} -
-
- {{ .name }} +
+

Über AMPERION

+ {{ with .description }}

{{ . | markdownify }}

{{ end }} +
+
+ +
+ +
+
+ {{ with .content }}{{ . | markdownify }}{{ end }} +
+ MEHR ÜBER UNS +
+ + +
+
+ Über AMPERION Bild
- {{ end }}
{{ end }} {{ end }} + +{{ $impressum := site.GetPage "page" "impressum" }} +{{ $cta := .Params.cta }} - + +
+
+

+ {{ .title | default "Lassen Sie uns Ihre Vision mit unserer Expertise zur Realität machen." }} +

+

+ {{ .lead | default "Bereit für Ihr Energieprojekt?" }} + {{ .accent | default "Kostenfreie Erstberatung sichern!" }} +

+
+ {{ with $impressum }} + {{ with .Params.email }} + + {{ $.Params.cta.email_button_text | default "E-Mail senden" }} + + {{ end }} + {{ with .Params.telefon }} + + {{ $.Params.cta.phone_button_text | default "Anrufen" }} + + {{ end }} + {{ end }} +
-
+ +
+
+
+{{ end }} +{{ end }} - - - - - - -{{ end }} \ No newline at end of file +{{ end }} diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html new file mode 100644 index 0000000..311a6a4 --- /dev/null +++ b/layouts/partials/breadcrumbs.html @@ -0,0 +1,86 @@ +{{/* Breadcrumbs mit Microdata + JSON-LD + - Zeigt nichts auf der Startseite + - Crumbs: Startseite → (Sektion/Kategorie) → Aktuelle Seite + - Sektionen werden auf DACH-taugliche Labels gemappt +*/}} + +{{ if not .IsHome }} + +{{/* ------- Hilfsfunktionen/Labels ------- */}} +{{ $section := .Section | default "" }} +{{ $sectionLabel := "" }} +{{ if eq $section "leistungen" }}{{ $sectionLabel = "Leistungen" }} +{{ else if or (eq $section "post") (eq $section "posts") (eq $section "blog") (eq $section "blogs") (eq $section "news") }}{{ $sectionLabel = "Wissen" }} +{{ else if or (eq $section "fokusthemen") (eq $section "themen") }}{{ $sectionLabel = "Fokusthemen" }} +{{ else if eq $section "referenzen" }}{{ $sectionLabel = "Referenzen" }} +{{ else if .CurrentSection }}{{ $sectionLabel = .CurrentSection.Title }} +{{ end }} + +{{ $crumbs := slice (dict "name" "Startseite" "url" ("/" | relURL)) }} + +{{/* Sektion (falls vorhanden) */}} +{{ if $sectionLabel }} + {{ $secURL := cond .CurrentSection ( .CurrentSection.RelPermalink ) (printf "/%s/" $section | relURL) }} + {{ $crumbs = $crumbs | append (dict "name" $sectionLabel "url" $secURL ) }} +{{ end }} + +{{/* Optional: erste Kategorie als weiterer Crumb (außer sie wäre ident mit Sektion) */}} +{{ $cat := index .Params.categories 0 }} +{{ if and $cat (ne (lower $cat) (lower $sectionLabel)) }} + {{ $catPage := site.GetPage (printf "/categories/%s" (urlize $cat)) }} + {{ $catURL := cond $catPage $catPage.RelPermalink (printf "/categories/%s/" (urlize $cat) | relURL) }} + {{ $crumbs = $crumbs | append (dict "name" $cat "url" $catURL ) }} +{{ end }} + +{{/* Aktuelle Seite */}} +{{ $crumbs = $crumbs | append (dict "name" .Title "url" .RelPermalink) }} + + + + + + + +{{ end }} diff --git a/layouts/partials/cta.html b/layouts/partials/cta.html deleted file mode 100644 index b1e37d3..0000000 --- a/layouts/partials/cta.html +++ /dev/null @@ -1,27 +0,0 @@ -{{ $impressum := site.GetPage "page" "impressum" }} - -{{ with site.GetPage "/" }} -{{ with .Params.cta }} -
-
-
-
-
-
- {{ with .title }}

{{ . | markdownify }}

{{ end }} - {{ with .content }}

{{ . | markdownify }}

{{ end }} - {{ with .button }} - {{ if .enable }} - E-mail - -
- TELEFON - {{ end }} - {{ end }} -
-
-
-
-
-{{ end }} -{{ end }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index d004ed8..4b04f64 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -15,3 +15,11 @@
+ + + diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 87a7feb..69490ff 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,69 +1,130 @@ - -{{.Title | default site.Title}} +{{ partial "seo.html" . }} - + + + + {{- if .IsHome -}} + Ingenieurbüro für PV, Speicher & Ladeinfrastruktur | AMPERION + {{- else -}} + {{- with .Params.meta_title -}} + {{ . }} + {{- else -}} + {{ .Title }} | AMPERION + {{- end -}} + {{- end -}} + + + {{ if or (eq site.BaseURL "/") (eq site.BaseURL "http://localhost:1313/") (eq site.BaseURL "http://examplesite.org/") (eq site.BaseURL "https://examplesite.org/") (eq site.BaseURL "http://examplesite.com/") (eq site.BaseURL "https://examplesite.com/")}}{{else}} {{ end }} - -{{ if .IsTranslated }} -{{ range .AllTranslations }} - -{{ end }} - + + + +{{ if not .IsTranslated }} + {{ end }} - - - -{{ with site.Params.author }} -{{ end }} + +{{ if .IsTranslated }} + {{ range .AllTranslations }} + + {{ end }} + +{{ end }} + + + + +{{ with site.Params.author }}{{ end }} {{ hugo.Generator }} - + +{{ with .Params.preload_images }} + {{ range . }} + + {{ end }} +{{ end }} + +{{ with .Params.robots }}{{ end }} + + - -{{ $favicon:= site.Params.favicon }} +{{ $favicon := site.Params.favicon }} {{ if $favicon }} -{{ if fileExists (add `assets/` $favicon) }} -{{ $favicon:= resources.Get $favicon }} -{{ $favicon_16:= $favicon.Resize "16x png"}} -{{ $favicon_32:= $favicon.Resize "32x png"}} -{{ $favicon_180:= $favicon.Resize "180x png"}} - - - - - + {{ if fileExists (add `assets/` $favicon) }} + {{ $fav := resources.Get $favicon }} + {{ $f16 := $fav.Resize "16x png" }} + {{ $f32 := $fav.Resize "32x png" }} + {{ $f180 := $fav.Resize "180x png" }} + + + + + + {{ end }} {{ end }} -{{ end }} - - - + + + - + {{ $image_path := .Params.image | default site.Params.image }} -{{ $image_path_local := printf "assets/%s" $image_path }} +{{ $image_path_local := printf "assets/%s" $image_path }} {{ $image_ext := trim (path.Ext $image_path | lower) "." }} + +{{/* Titel & Beschreibung für OG/Twitter */}} +{{ $ogt := cond .IsHome "Ingenieurbüro für PV, Speicher & Ladeinfrastruktur | AMPERION" (cond .Params.meta_title .Params.meta_title (printf "%s | AMPERION" .Title)) }} +{{ $desc := .Params.meta_description | default site.Params.description }} + +{{ $isArticle := in (slice "post" "posts" "blog" "blogs" "news") .Section }} + + + +{{ with $desc }}{{ end }} + {{ if fileExists $image_path_local }} - - -{{ if ne $image_ext "svg" }} -{{ with (imageConfig $image_path_local) }} -{{ if (and (gt .Width 144) (gt .Height 144)) }} - - -{{ end }} - - -{{ end }} + + {{ if ne $image_ext "svg" }} + {{ with (imageConfig $image_path_local) }} + {{ if (and (gt .Width 144) (gt .Height 144)) }} + + {{ end }} + + + {{ end }} + {{ end }} {{ end }} + + +{{ with $desc }}{{ end }} + + + + + + + + +{{ if templates.Exists "partials/ld-org.html" }} + {{ partial "ld-org.html" . }} {{ end }} -{{ template "_internal/opengraph.html" . }} - + + + diff --git a/layouts/partials/img.html b/layouts/partials/img.html new file mode 100644 index 0000000..cab36e1 --- /dev/null +++ b/layouts/partials/img.html @@ -0,0 +1,26 @@ +{{/* Re-usable image partial with alt + size fallback +Usage: + {{ partial "img.html" (dict "src" "/images/foo.webp" "alt" "Kurzbeschreibung" "class" "img-fluid" "loading" "lazy" "page" .) }} +*/}} +{{- $src := .src -}} +{{- $alt := .alt | default .page.Title -}} +{{- $class := .class -}} +{{- $loading := .loading | default "lazy" -}} + +{{- $w := 0 -}} +{{- $h := 0 -}} +{{- $static := printf "static/%s" (strings.TrimLeft "/" $src) -}} +{{- if fileExists $static -}} + {{- with (imageConfig $static) -}} + {{- $w = .Width -}} + {{- $h = .Height -}} + {{- end -}} +{{- end -}} + +{{ $alt | plainify }} diff --git a/layouts/partials/ld-org.html b/layouts/partials/ld-org.html new file mode 100644 index 0000000..5bfa6e9 --- /dev/null +++ b/layouts/partials/ld-org.html @@ -0,0 +1,26 @@ +{{- /* Organization JSON-LD — robust, nur Felder ausgeben, die vorhanden sind */ -}} +{{- $logo := site.Params.logo | default site.Params.favicon | default site.Params.image | default "images/logo.webp" -}} +{{- $email := site.Params.email | default "" -}} +{{- $phone := site.Params.phone1 | default site.Params.phone | default "" -}} + + diff --git a/layouts/partials/page-title.html b/layouts/partials/page-title.html index dde3de2..0455a07 100644 --- a/layouts/partials/page-title.html +++ b/layouts/partials/page-title.html @@ -1,14 +1,541 @@ -
-
+ +
+ + + + + {{/* SEO: H1 steuerbar via .Params.h1, Fallback .Title; KEIN Untertitel mehr */}} + {{ $h1 := .Params.h1 | default .Title }} +
-
-
-

{{ .Title }}

- {{ with .Params.description }} -

{{ . }}

- {{ end }} +
+
+

{{ $h1 }}

+ + diff --git a/layouts/partials/related.html b/layouts/partials/related.html new file mode 100644 index 0000000..2746eaf --- /dev/null +++ b/layouts/partials/related.html @@ -0,0 +1,169 @@ +{{/* related.html (Enhanced UI + robust image fallback) */}} + +{{ if not .IsHome }} +{{ $page := . }} +{{ $max := .Params.related_max | default 4 }} +{{ $tags := .Params.tags | default (slice) }} +{{ $exclude := .Params.related_exclude | default (slice) }} +{{ $manual := .Params.related_manual | default (slice) }} +{{ $pages := slice }} + +{{/* Manuelle Auswahl? */}} +{{ if gt (len $manual) 0 }} + {{ range $manual }} + {{ $p := site.GetPage . }} + {{ if not $p }}{{ $p = site.GetPage (printf "/%s" (strings.TrimPrefix "/" .)) }}{{ end }} + {{ if $p }}{{ $pages = $pages | append $p }}{{ end }} + {{ end }} + {{ $pages = first $max $pages }} +{{ else }} + {{/* Automatisch */}} + {{ $recs := slice }} + {{ range site.RegularPages }} + {{ if or + (eq .RelPermalink $page.RelPermalink) + (in (slice "impressum" "datenschutz" "agb" "privacy") .Section) + (in $exclude .RelPermalink) + (in $exclude .File.TranslationBaseName) + }} + {{/* skip */}} + {{ else }} + {{ $candTags := .Params.tags | default (slice) }} + {{ $tagScore := len (intersect $candTags $tags) }} + + {{/* Sektion-Priorität */}} + {{ $secScore := 0 }} + {{ if eq $page.Section "leistungen" }} + {{ if or (eq .Section "fokusthemen") (in (slice "post" "posts" "blog" "blogs" "news") .Section) }}{{ $secScore = 1 }}{{ end }} + {{ else if or (eq $page.Section "fokusthemen") (eq $page.Section "themen") }} + {{ if or (eq .Section "leistungen") (in (slice "post" "posts" "blog" "blogs" "news") .Section) }}{{ $secScore = 1 }}{{ end }} + {{ else if in (slice "post" "posts" "blog" "blogs" "news") $page.Section }} + {{ if or (eq .Section "leistungen") (eq .Section "fokusthemen") (eq .Section "themen") }}{{ $secScore = 1 }}{{ end }} + {{ end }} + + {{ $score := add (mul $tagScore 10) $secScore }} + {{ if gt $score 0 }} + {{ $recs = $recs | append (dict "p" . "s" $score "d" .Date) }} + {{ end }} + {{ end }} + {{ end }} + + {{ $recs = sort $recs "s" "desc" "d" "desc" }} + {{ range first $max $recs }} + {{ $pages = $pages | append .p }} + {{ end }} +{{ end }} + +{{ if gt (len $pages) 0 }} + +{{ end }} +{{ end }} diff --git a/layouts/partials/script.html b/layouts/partials/script.html index ff61ae8..a4880f8 100644 --- a/layouts/partials/script.html +++ b/layouts/partials/script.html @@ -1,71 +1,140 @@ - - {{ $scripts := slice }} {{ range site.Params.plugins.js}} -{{ if findRE "^http" .link }} - -{{ else }} -{{ $scripts = $scripts | append (resources.Get .link) }} -{{ end }} + {{ if findRE "^http" .link }} + + {{ else }} + {{ $scripts = $scripts | append (resources.Get .link) }} + {{ end }} {{ end }} {{ $scripts := $scripts | append (resources.Get "js/script.js" | minify) }} {{ $scripts := $scripts | resources.Concat "js/script.js" | minify | fingerprint "sha512" }} - - + + + + + + + + - - \ No newline at end of file diff --git a/layouts/partials/section-grid.html b/layouts/partials/section-grid.html new file mode 100644 index 0000000..83c4df8 --- /dev/null +++ b/layouts/partials/section-grid.html @@ -0,0 +1,31 @@ +{{ with site.GetPage .page }} + {{ with .Params.service }} +
+
+

{{ .title | markdownify }}

+

{{ .description | markdownify }}

+
+ +
+ {{ range .service_item }} + {{ if eq $.type "zoom" }} + + {{ else }} +
+ +

{{ .name | markdownify }}

+

{{ .content | markdownify }}

+
+ {{ end }} + {{ end }} +
+
+ + {{ end }} +{{ end }} diff --git a/layouts/partials/seo.html b/layouts/partials/seo.html new file mode 100644 index 0000000..8dea39f --- /dev/null +++ b/layouts/partials/seo.html @@ -0,0 +1,14 @@ +{{- /* layouts/partials/seo.html — minimal & konfliktfrei */ -}} + +{{- $desc := .Params.meta_description + | default .Params.description + | default .Description + | default site.Params.default_meta_description + | default site.Params.description + | default (plainify (.Summary | default .Content)) -}} + + + +{{- if or .Draft .Params.noindex -}} + +{{- end -}} diff --git a/layouts/partials/style.html b/layouts/partials/style.html index 26e840b..22c653d 100644 --- a/layouts/partials/style.html +++ b/layouts/partials/style.html @@ -1,16 +1,36 @@ - +{{- /* Robust CSS loader: externe Links direkt, lokale Ressourcen sammeln, SCSS bauen, dann bündeln */ -}} + + +{{- $bundleList := slice -}} - -{{ $styles := slice }} -{{ range site.Params.plugins.css }} -{{ if findRE "^http" .link }} - -{{ else }} -{{ $styles = $styles | append (resources.Get .link) }} -{{ end }} -{{ end }} -{{ $styles := $styles | append (resources.Get "scss/style.scss" | resources.ExecuteAsTemplate "style.scss" . | toCSS) }} -{{ $styles := $styles | resources.Concat "/css/style.css" | minify | fingerprint "sha512"}} - \ No newline at end of file +{{- /* 1) Plugins aus params: externe -> , lokale -> sammeln */ -}} +{{- $plugins := site.Params.plugins.css | default (slice) -}} +{{- range $plugins }} + {{- $link := .link | default "" -}} + {{- if $link -}} + {{- if findRE `^https?://` $link -}} + + {{- else -}} + {{- with (resources.Get $link) -}} + {{- $bundleList = $bundleList | append . -}} + {{- end -}} + {{- end -}} + {{- end -}} +{{- end -}} + +{{- /* 2) SCSS bauen (falls vorhanden) und hinzufügen */ -}} +{{- with (resources.Get "scss/style.scss") -}} + {{- $css := . | resources.ExecuteAsTemplate "scss/style.scss" $ | toCSS (dict "targetPath" "css/style.css") -}} + {{- $bundleList = $bundleList | append $css -}} +{{- end -}} + +{{- /* 3) Bündeln + minify + fingerprint, sofern wir was haben */ -}} +{{- if gt (len $bundleList) 0 -}} + {{- $bundle := $bundleList | resources.Concat "css/bundle.css" | minify | fingerprint "sha512" -}} + +{{- else -}} + {{- /* Fallback: statische CSS falls vorhanden/gewünscht */ -}} + +{{- end -}} diff --git a/layouts/partials/whyamperion.html b/layouts/partials/whyamperion.html deleted file mode 100644 index bbcb7b7..0000000 --- a/layouts/partials/whyamperion.html +++ /dev/null @@ -1,25 +0,0 @@ -{{ with site.GetPage "/whyamperion" }} -{{ with .Params.service }} -
-
-
-
- {{ with .title }}

{{ . | markdownify }}

{{ end }} - {{ with .description }}

{{ . | markdownify }}

{{ end }} -
-
-
- {{ range .service_item }} -
-
- -

{{ .name | markdownify }}

-

{{ .content | markdownify }}

-
-
- {{ end }} -
-
-
-{{ end }} -{{ end }} diff --git a/resources/_gen/assets/scss/style.scss_36bc4e0ffe4a90eb34a36b045730109f.content b/resources/_gen/assets/scss/style.scss_36bc4e0ffe4a90eb34a36b045730109f.content new file mode 100644 index 0000000..ec890a1 --- /dev/null +++ b/resources/_gen/assets/scss/style.scss_36bc4e0ffe4a90eb34a36b045730109f.content @@ -0,0 +1 @@ +@charset "UTF-8";body{font-family:open sans,sans-serif;font-size:16px;line-height:1.6;color:#222;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.hero-subtitle{font-size:clamp(1.25rem,2.5vw,1.75rem);text-align:center;color:#004753;text-transform:uppercase;letter-spacing:.12em;line-height:1.4;margin-top:1rem}h1{font-size:clamp(2.5rem,5vw,4rem);font-weight:600;line-height:1.3;margin-bottom:1rem;color:#000}h1.page-title{font-size:clamp(2.5rem,6vw,4rem);margin-top:2rem;text-transform:capitalize}h2{font-size:clamp(2.5rem,5vw,4rem);font-weight:600;line-height:1.3;margin-bottom:1rem;color:#046e6e}h3{font-size:clamp(2rem,3vw,2.5rem);font-style:italic;font-weight:400;line-height:1.4;margin-bottom:5rem;color:#000}h4{font-size:clamp(1.8rem,1.8vw,2rem);font-weight:400;line-height:1.6;margin-bottom:1rem;color:inherit;color:#f5a623}p{font-style:normal;font-size:clamp(1.5rem,1.5vw,1.8rem);margin-bottom:1.25rem;line-height:1.6}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}strong,b{font-weight:700}p{margin-bottom:1.25rem}ul,ol{padding-left:1.5rem;margin-bottom:1.5rem}li{margin-bottom:.5rem;line-height:1.6}a{color:#046e6e;text-decoration:none;transition:color .3s ease}a:hover{color:#f5a623;text-decoration:underline}ul{margin:0;padding-left:0;list-style-type:none}iframe{border:0}img{max-width:100%;height:auto}a,a:focus,a:hover{text-decoration:none;outline:0;color:#185b63}blockquote{font-size:18px;border-color:#185b63;padding:20px 40px;text-align:left;color:#737373}.navbar-toggle .icon-bar{background:#185b63}input[type=email],input[type=password],input[type=text],input[type=tel]{box-shadow:none;height:45px;outline:none;font-size:14px}input[type=email]:focus,input[type=password]:focus,input[type=text]:focus,input[type=tel]:focus{box-shadow:none;border:1px solid #185b63}.form-control{box-shadow:none;border-radius:0}.form-control:focus{box-shadow:none;border:1px solid #185b63}.slick-slide{outline:0}.btn-main,.btn-small,.btn-transparent{background:#185b63;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;padding:20px;text-transform:uppercase;border-radius:10px;text-align:center;-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-ms-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease}.btn-main.btn-icon i,.btn-icon.btn-small i,.btn-icon.btn-transparent i{font-size:16px;vertical-align:middle;margin-right:5px}.btn-main:hover,.btn-small:hover,.btn-transparent:hover{background:#000;color:#fff}.btn-solid-border{border:2px solid #fff;background:0 0;color:#fff}.btn-solid-border:hover{background:#f5f5f5}.btn-transparent{background:0 0;padding:0;color:#185b63}.btn-transparent:hover{background:0 0;color:#185b63}.btn-large{padding:20px 45px}.btn-large.btn-icon i{font-size:16px;vertical-align:middle;margin-right:5px}.btn-small{padding:10px 25px;font-size:12px}.btn-round{border-radius:2px}.btn-round-full{border-radius:50px}.btn.active:focus,.btn:active:focus,.btn:focus{outline:0}.mt-10{margin-top:20px}.mt-20{margin-top:20px}.mt-30{margin-top:30px}.mt-40{margin-top:40px}.mt-50{margin-top:50px}.btn:focus{color:#d9d9d9}.w-100{width:100%}.margin-0{margin:0 !important}.preloader{position:fixed;top:0;left:0;right:0;bottom:0;background-color:#fff;z-index:9999;display:flex;align-items:center;justify-content:center}.bg-shadow{background-color:#fff;box-shadow:0 16px 24px rgba(0,0,0,8%);padding:20px}.bg-gray{background:#f5f5f5}.bg-primary{background:#185b63}.bg-primary-dark{background:#0e353a}.bg-primary-darker{background:#041011}.bg-dark{background:#202122}.section{padding:10px 0}@media(max-width:768px){.section{padding-top:20px;padding-bottom:20px}}.section-sm{padding:70px 0}.title{padding:20px 0 30px}.section-subtitle{font-size:28px;font-weight:600;margin-bottom:30px}@media(max-width:400px){.section-subtitle{font-size:22px}}@media(max-width:480px){.section-subtitle{font-size:20px}}.page-title{height:auto;padding:85px 0}.page-title .block{text-align:center}.heading{padding-bottom:60px;text-align:center}.page-wrapper{padding:70px 0}@media(max-width:768px){.page-wrapper{padding-top:20px;padding-bottom:20px}}.social-media-icons ul li{display:inline-block}.social-media-icons ul li a{font-size:18px;color:#333;display:inline-block;padding:7px 12px;color:#fff}.social-media-icons ul li .twitter{background:#00aced}.social-media-icons ul li .facebook{background:#3b5998;padding:7px 18px}.social-media-icons ul li .googleplus{background:#dd4b39}.social-media-icons ul li .dribbble{background:#ea4c89}.social-media-icons ul li .instagram{background:#bc2a8d}.dropdown-slide{position:static}.dropdown-slide .open>a,.dropdown-slide .open>a:focus,.dropdown-slide .open>a:hover{background:0 0}.dropdown-slide.full-width .dropdown-menu{left:0 !important;right:0 !important}.dropdown-slide:hover .dropdown-menu{display:none;opacity:1;display:block;transform:translate(0,0);opacity:1;visibility:visible;color:#737373;transform:translateY(0)}.dropdown-slide .dropdown-menu{border-radius:0;opacity:1;visibility:visible;position:absolute;padding:15px;border:1px solid #ebebeb;box-shadow:0 2px 4px rgba(0,0,0,5%);position:absolute;display:block;visibility:hidden;opacity:0;transform:translateY(30px);transition:visibility .2s,opacity .2s,transform 500ms cubic-bezier(.43,.26,.11,.99)}@media(max-width:480px){.dropdown-slide .dropdown-menu{transform:none}}.commonSelect{margin-left:10px;padding-right:6px;position:relative}.commonSelect:before{content:'\f3d0';font-family:"font awesome 5 free";position:absolute;right:-4px;top:4px;font-size:10px}.commonSelect select{cursor:pointer;border:none;padding:0;height:auto;color:#555}.commonSelect select:focus{box-shadow:none;border:none}.tabCommon .nav-tabs{border-bottom:0;margin-bottom:10px}.tabCommon .nav-tabs li{margin-right:5px}.tabCommon .nav-tabs li.active a{background-color:#185b63;border:1px solid #185b63;color:#fff}.tabCommon .nav-tabs a{border-radius:0;background:#f5f5f5}.tabCommon .nav-tabs a:hover{border:1px solid transparent;background:#185b63;color:#fff}.tabCommon .tab-content{padding:20px;border:1px solid #004753}.commonAccordion .panel,.commonAccordion-2 .panel{border-radius:0;box-shadow:none}.commonAccordion .panel .panel-heading,.commonAccordion-2 .panel .panel-heading{background:0 0;padding:0}.commonAccordion .panel .panel-title,.commonAccordion-2 .panel .panel-title{position:relative}.commonAccordion .panel .panel-title a,.commonAccordion-2 .panel .panel-title a{display:block;font-size:14px;text-transform:uppercase;padding:10px}.commonAccordion .panel .panel-title a:before,.commonAccordion-2 .panel .panel-title a:before{color:#555;content:"\f209";position:absolute;right:25px;font-family:"font awesome 5 free"}.commonAccordion .panel .panel-title a.collapsed:before,.commonAccordion-2 .panel .panel-title a.collapsed:before{content:"\f217"}.list-circle{padding-left:20px}.list-circle li{list-style-type:circle}.play-icon{border:1px solid #004753;display:inline-block;width:60px;height:60px;border-radius:50px;font-size:30px}.play-icon i{line-height:60px}.alert-common{border-radius:0;border-width:2px}.alert-common i{margin:0 5px;font-size:16px}.alert-solid{background:0 0;color:#185b63}@media(max-width:480px){.buttonPart li{margin-bottom:8px}}@media(max-width:768px){.buttonPart li{margin-bottom:8px}}.overly,.page-title{position:relative}.overly:before,.page-title:before{content:"";position:absolute;left:0;top:0;bottom:0;right:0;width:100%;height:100%;background:rgba(42,68,71,.5);opacity:.3}.owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#185b63 !important}#success,#error{display:none}.sticky-top{position:sticky;top:0}@media(max-width:992px){.sticky-top{position:static}}span.cloaked-e-mail:before{content:attr(data-domain)"@" attr(data-user);unicode-bidi:bidi-override;direction:rtl}@media(min-width:992px){.row .no-float{display:table-cell;float:none}}.scrolldown{--sizeX:30px;--sizeY:50px;position:relative;width:var(--sizeX);height:var(--sizeY);margin-left:calc(50% - var(--sizeX)/2);margin-top:100px;border:calc(var(--sizeX)/10)solid;border-radius:50px;box-sizing:border-box;margin-bottom:16px;color:#fff;transition:color .3s}.scrolldown::before{content:"";position:absolute;bottom:30px;left:50%;width:6px;height:6px;margin-left:-3px;background-color:currentColor;border-radius:100%;animation:scrolldown-anim 2s infinite;box-sizing:border-box;box-shadow:0 -5px 3px 1px #ffffff66}.scrolldown:hover{color:#f5a623}@keyframes scrolldown-anim{0%{opacity:0;height:6px}40%{opacity:1;height:10px}80%{transform:translate(0,20px);height:10px;opacity:0}100%{height:3px;opacity:0}}.chevrons{padding:6px 0 0;margin-left:-3px;margin-top:48px;width:30px;display:flex;flex-direction:column;align-items:center}.chevrondown{margin-top:-6px;position:relative;border:solid;border-width:0 3px 3px 0;display:inline-block;width:10px;height:10px;transform:rotate(45deg)}.chevrondown:hover{color:#f5a623}.chevrondown:nth-child(odd){animation:pulse 500ms ease infinite alternate}.chevrondown:nth-child(even){animation:pulse 500ms ease infinite alternate 250ms}.scrolldown{color:#000;transition:color .3s}.scrolldown:hover{color:#f5a623}@keyframes pulse{from{opacity:0}to{opacity:.5}}.logo-up{margin-top:-50px}.section-title1{display:flex;align-items:center;justify-content:center;gap:10px}.title-icon1{width:10px;height:10px}.why-title1{margin:0}#wrapper-work{overflow:hidden;padding-top:100px}#wrapper-work ul li{width:50%;float:left;position:relative}#wrapper-work ul li img{width:100%;height:100%}#wrapper-work ul li .items-text{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%;color:#fff;background:rgba(0,0,0,.6);padding-left:44px;padding-top:140px}#wrapper-work ul li .items-text h2{padding-bottom:28px;padding-top:75px;position:relative}#wrapper-work ul li .items-text h2:before{content:"";position:absolute;left:0;bottom:0;width:75px;height:3px;background:#fff}#wrapper-work ul li .items-text p{padding-top:30px;font-size:16px;line-height:27px;font-weight:300;padding-right:80px}#features-work{padding-top:50px;padding-bottom:75px}#features-work .block ul li{width:19%;text-align:center;display:inline-block;padding:40px 0}header{min-height:100px;background:#fff;padding:20px 0}@media(max-width:992px){header{min-height:90px}}header .navbar{margin-bottom:0;border:0}header .navbar-brand{padding-top:5px}header .navbar-default{background:0 0;border:0}header .navbar-default .navbar-nav{padding-top:10px}header .navbar-default .navbar-nav li a{color:#333;padding:10px 26px;font-size:15px}font header .navbar-default .navbar-nav li a:hover{color:#000}.navigation{background:#fff;padding:20px 0}.navigation .navbar{margin-bottom:0;border:0}.navigation .navbar-brand{padding-top:5px}.navigation .navbar{background:0 0;border:0}.navigation .navbar .navbar-nav{padding-top:5px;padding-bottom:5px}.navigation .navbar .navbar-nav a{color:#000;padding:10px 15px;font-weight:500;font-size:14px;text-transform:uppercase}.navigation .navbar .navbar-nav a:hover,.navigation .navbar .navbar-nav a:focus{color:#f5a623;background:0 0}.navigation .navbar .navbar-nav a.current{color:#000;pointer-events:none;cursor:default}.navigation .navbar .navbar-nav a.current-parent{color:#000}.navigation .navbar .navbar-nav select{margin:10px 15px}.navigation .navbar .current>.dropdown-toggle{color:#000}.navigation .navbar .dropdown-menu{border-radius:0;border:none;left:-5px;box-shadow:0 0 25px rgba(0,0,0,8%);width:250px}.navigation .navbar .dropdown-menu a{text-transform:none;font-weight:400;color:#7c7c7c;padding:10px 20px;-webkit-transition:color .1s ease,padding .3s ease;-moz-transition:color .1s ease,padding .3s ease;-ms-transition:color .1s ease,padding .3s ease;-o-transition:color .1s ease,padding .3s ease;transition:color .1s ease,padding .3s ease}.navigation .navbar .dropdown-menu a:hover{background:#185b63;color:#fff;padding-left:25px}.navigation .navbar .dropdown-menu a.current{padding-left:25px;color:#fff;background:#185b63}.nav .open>a{background:0 0}@media(max-width:992px){.navbar-header{float:none}.navbar-left,.navbar-right{float:none !important}.navbar-toggle{display:block}.navbar-collapse{border-top:1px solid transparent;box-shadow:inset 0 1px rgba(255,255,255,.1)}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-collapse.collapse{display:none !important}.navbar-nav{float:none !important;margin-top:7.5px}.navbar-nav>li{float:none}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px}.collapse{clear:both}.collapse.in{display:block !important}}#select-language{border:none;outline:none;box-shadow:none;background:0 0;-webkit-appearance:none;-moz-appearance:none;appearance:textfield;padding:0 2px;height:100%}.slider{background-repeat:no-repeat;background-size:cover;background-attachment:fixed;background-position:50%;padding:170px 0 200px;position:relative;min-height:1000px}@media(max-width:1200px){.slider{background-attachment:unset;padding:150px 0}}.slider .block{color:#e0e0e0;text-align:center}.slider .block h1{font-weight:100;font-size:45px;line-height:1.33em;letter-spacing:.2em;padding-bottom:15px;text-transform:uppercase}@media(max-width:768px){.slider .block h1{font-size:35px}}@media(max-width:480px){.slider .block h1{font-size:28px}}@media(max-width:400px){.slider .block h1{font-size:26px}}.slider .block p{margin-bottom:30px;color:#030303;font-size:25px;line-height:1.5em;font-weight:300}@media(max-width:480px){.slider .block p{font-size:14px}}@media(max-width:480px){.slider .block .btn{font-size:12px}}.call-to-action{position:relative;text-align:center;padding:70px 10px;background-size:cover;background-position:50%}@media(max-width:768px){.call-to-action{padding-top:20px;padding-bottom:20px}}.call-to-action::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.7);z-index:1}.call-to-action .container,.call-to-action .row,.call-to-action .col-md-12,.call-to-action .block{position:relative;z-index:2}.call-to-action h2{color:#fff;margin:0;padding:20px 0;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.call-to-action p{color:#fff;font-size:20px;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.call-to-action .btn-main,.call-to-action .btn-transparent,.call-to-action .btn-small{padding:15px 35px;font-size:20px;margin-top:10px;margin-bottom:10px;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.overlay-dark{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.4);z-index:1}.call-to-action .container{position:relative;z-index:2}.service{text-align:center;padding:30px 0}@media(max-width:768px){.service{padding-top:20px;padding-bottom:20px}}.service .service-item{padding-bottom:10px}.service .service-item i{font-size:50px;color:#185b63}.service .service-item img.service-icon{width:100px;height:100px;display:inline-block}.service .service-item h4{padding-top:15px;margin:0;margin-top:10px;font-weight:500;text-transform:uppercase}.service .service-item p{padding-top:10px;margin:0}.dark-service .title{color:#fff}.dark-service .service-item{padding-bottom:30px;text-align:center}.dark-service .service-item i{color:#fff;font-size:40px;margin-bottom:10px}.dark-service .service-item img.service-icon{width:100px;height:100px;display:inline-block}.dark-service .service-item h4{color:#fff;padding-top:15px;margin:0;margin-top:10px;font-weight:500;text-transform:uppercase}.dark-service .service-item p{padding-top:10px;margin:0}.service-about p{line-height:28px}.service-arrow .block{padding:70px 30px}.service-arrow .block i{font-size:45px}.service-arrow .block p{color:#000}.service-list .block{padding:30px;margin-bottom:20px;background:#fff}.center-container{display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center}.responsive-container{width:100%;max-width:100%;display:block;overflow:hidden}.responsive-image{max-width:100%;height:auto}.page-title{position:relative;padding:100px 0}.page-title .block{text-align:center}.page-title .block h1{color:#5f5c5c;font-weight:200;letter-spacing:.5em;margin-top:20px;margin-bottom:-60px;text-transform:capitalize}.page-title .block p{color:#000}.page-title::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:#fff;z-index:-1}.service-arrow .block{display:flex;align-items:center;justify-content:space-between;flex-wrap:nowrap}.service-arrow .service-image{flex:none;margin-left:20px}.service-arrow .service-image img{max-width:600px;width:100%;height:auto;display:block}.service-arrow .service-content{flex:1}@media(max-width:768px){.service-arrow .block{flex-direction:column;text-align:center}.service-arrow .service-image{margin-left:0;margin-top:20px;width:100%}}.service-title{color:#273544}.service-description{color:#990505}.feature{background:url(../img/feature-bg.jpg);background-position:50% 94px;display:block;position:relative;background-attachment:fixed;background-repeat:no-repeat;background-position:50%;background-size:cover;padding:100px 0}@media(max-width:1200px){.feature{padding-top:20px;padding-bottom:20px;background-attachment:unset}}.feature h2{margin:0;padding-top:30px;padding-bottom:30px}.feature p{color:#8c8c8c;margin-bottom:20px}.feature .btn-view-works{background:#6c6c6c;color:#fff;padding:10px 20px;margin-bottom:30px}.portfolio-work{padding:80px 0}.portfolio-work .block .portfolio-menu{text-align:center}.portfolio-work .block .portfolio-menu .btn-group{margin-bottom:40px}.portfolio-work .block .portfolio-menu .btn-group label{display:inline-block;border:1px solid #004753;padding:8px 25px;cursor:pointer;font-size:15px;color:#333;outline:0;background:#fff;margin:2px;border-radius:0;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.portfolio-item{position:relative;padding:0}.portfolio-item img{width:100%;height:auto}.portfolio-item:hover .portfolio-hover{visibility:visible;opacity:1}.portfolio-item:hover .portfolio-content{transform:translateY(-50%)}.portfolio-hover{position:absolute;height:100%;width:100%;top:0;left:0;background:rgba(60,55,55,.5);visibility:hidden;opacity:0;transition:.3s ease}.portfolio-content{position:absolute;left:0;right:0;top:50%;transform:translateY(-40%);text-align:center;padding:20px;transition:inherit}.portfolio-content *{color:#fff}.portfolio-content a{display:block;transition:.2s ease}.portfolio-content a i{font-size:30px}.portfolio-content a.h3{margin-top:0}.portfolio-single-page .project-details h4{margin-bottom:20px;padding-bottom:10px;border-bottom:2px dashed #004753}.portfolio-single-page .project-details span{color:#838383;width:180px;display:inline-block}.portfolio-single-page .project-details strong{color:#313131;font-weight:400}.portfolio-single-page .project-details ul li{margin-bottom:10px}.testimonial{padding:100px 0}@media(max-width:768px){.testimonial{padding-top:20px;padding-bottom:20px}}.testimonial .counter-box li{width:50%;float:left;text-align:center;margin:30px 0}@media(max-width:768px){.testimonial .counter-box li{margin-top:0}}.testimonial .testimonial-carousel{border:1px solid #004753;padding:24px}.testimonial .testimonial-carousel i{font-size:35px;margin-bottom:20px}.testimonial .testimonial-carousel p{font-family:open sans semibold,serif;line-height:28px;padding-bottom:20px}.testimonial .testimonial-carousel .user img{padding-bottom:0;border-radius:500px;width:80px;display:inline-block}.testimonial .testimonial-carousel .user p{font-family:open sans,sans-serif;padding-bottom:0;margin-top:6px;font-size:12px;line-height:20px}.testimonial .testimonial-carousel .user p span{display:block;color:#393939;font-weight:600}.testimonial .testimonial-carousel .owl-carousel .owl-pagination div{border:1px solid #1d1d1d;border-radius:500px;display:inline-block;height:10px;margin-right:15px;width:10px}.testimonial .testimonial-carousel .owl-carousel .owl-pagination div.active{background:#5c5c5c;font-size:30px;display:inline-block;border:0}.counter-box i{font-size:35px;margin-bottom:15px}.counter-box h4{font-size:30px;font-weight:700}.counter-box span{color:#555}.contact-form{padding-top:70px;padding-bottom:35px}.contact-form .block .form-group{padding-bottom:15px;margin:0}.contact-form .block .form-group .form-control{background:#f4f4f4;height:60px;border:1px solid #eef2f6;box-shadow:none;width:100%}.contact-form .block .form-group-2{margin-bottom:13px}.contact-form .block .form-group-2 textarea{background:#f4f4f4;height:135px;border:1px solid #eef2f6;box-shadow:none;width:100%}.contact-form .block .form-group-h{display:none}.contact-form .block button{width:100%;height:60px;background:#474747;border:none;color:#fff;font-size:18px}.address-block{margin-bottom:20px}.address-block li{position:relative;padding-left:0;margin-bottom:10px}.address-block li i{position:absolute;left:0;font-size:25px;line-height:20px}.address-block li div{display:inline-block;vertical-align:top}.social-icons{margin-top:40px}.social-icons li{display:inline-block;margin:0 10px}.social-icons a{display:inline-block}.social-icons i{color:#2c2c2c;margin-right:25px;font-size:25px}.contact-box{padding-top:35px;padding-bottom:58px}.contact-box .block img{width:100%}.contact-box .block h2{font-weight:300;color:#000;font-size:28px;padding-bottom:30px}.contact-box .block p{color:#5c5c5c;display:block}.pricing-table .pricing-item{padding:40px 20px;background:#fff;box-shadow:0 8px 15px rgba(5,57,106,6%)}.pricing-table .pricing-item a.btn-main,.pricing-table .pricing-item a.btn-transparent,.pricing-table .pricing-item a.btn-small{text-transform:uppercase;margin-top:20px}.pricing-table .pricing-item li{font-weight:400;padding:6px 0;color:#626262}.pricing-table .pricing-item li i{margin-right:6px;color:#185b63}.pricing-table .price-title{padding:30px 0 20px}.pricing-table .price-title>h3{font-weight:700;margin:0 0 5px;font-size:15px;text-transform:uppercase}.pricing-table .price-title>p{font-size:14px;font-weight:400;line-height:18px;margin-top:5px}.pricing-table .price-title .value{color:#185b63;font-size:50px;padding:10px 0}.product-item{margin-bottom:30px}.product-item .product-thumb{position:relative}.product-item .product-thumb img{width:100%;height:auto}.product-item .product-thumb .bage{position:absolute;top:12px;right:12px;background:#000;color:#fff;font-size:12px;padding:4px 12px;font-weight:300;display:inline-block}.product-item .product-thumb:before{transition:.3s all;opacity:0;background:rgba(0,0,0,.6);content:'';position:absolute;top:0;right:0;left:0;bottom:0}.product-item .product-thumb .preview-meta{position:absolute;text-align:center;bottom:0;left:0;width:100%;justify-content:center;opacity:0;transition:.2s;transform:translateY(10px)}.product-item .product-thumb .preview-meta li{display:inline-block}.product-item .product-thumb .preview-meta li a,.product-item .product-thumb .preview-meta li span{background:#fff;padding:10px 16px;cursor:pointer;display:inline-block;font-size:18px}.product-item .product-thumb .preview-meta li a:hover,.product-item .product-thumb .preview-meta li span:hover{background:#185b63;color:#fff}.product-item:hover .product-thumb:before{opacity:1}.product-item:hover .preview-meta{opacity:1;transform:translateY(-20px)}.product-item .product-content{text-align:center}.product-item .product-content h4{font-size:14px;font-weight:400;margin-top:15px;margin-bottom:6px}.product-item .product-content h4 a{color:#000}.product-modal{background:rgba(255,255,255,.9);text-align:center;padding:0 !important}.product-modal:before{content:'';display:inline-block;height:100%;vertical-align:middle;margin-right:-4px}.product-modal.fade .modal-dialog{transform:translate(0,0)}.product-modal .close{width:50px;float:none;position:absolute;right:20px;z-index:9;top:20px;font-size:30px;outline:none}.product-modal .modal-dialog{width:900px;display:inline-block;text-align:left;vertical-align:middle}@media(max-width:480px){.product-modal .modal-dialog{width:100%}}@media(max-width:768px){.product-modal .modal-dialog{width:100%}}.product-modal .modal-content{border-radius:0;box-shadow:none;border:none}.product-modal .modal-content .modal-body{padding:30px}.product-modal .modal-content .modal-body .modal-image img{width:100%;height:auto}.product-modal .modal-content .modal-body .product-short-details h2{margin-top:0;font-size:22px;font-weight:400}.product-modal .modal-content .modal-body .product-short-details h2 a{color:#000}@media(max-width:480px){.product-modal .modal-content .modal-body .product-short-details h2{margin-top:15px}}@media(max-width:768px){.product-modal .modal-content .modal-body .product-short-details h2{margin-top:15px}}.product-modal .modal-content .modal-body .product-short-details .product-price{font-size:30px;margin:20px 0}@media(max-width:480px){.product-modal .modal-content .modal-body .product-short-details .product-price{margin:10px 0}}.product-modal .modal-content .modal-body .product-short-details .btn-main,.product-modal .modal-content .modal-body .product-short-details .btn-transparent,.product-modal .modal-content .modal-body .product-short-details .btn-small{margin-top:20px}.product-modal .modal-content .modal-body .product-short-details .btn-transparent{color:#444;border-bottom:1px solid #004753}.product-shorting{margin-bottom:30px}.product-shorting span{margin-right:15px}.product-category ul{padding-left:15px}.product-category ul li{margin-bottom:4px}.product-category ul li a{color:#626262}.product-category ul li a:hover{color:#000}.single-product{padding:60px 0 40px}.single-product .breadcrumb{background:0 0}.single-product .breadcrumb li{color:#000;font-weight:200}.single-product .breadcrumb li a{color:#000;font-weight:200}.single-product .product-pagination li{display:inline-block;margin:0 8px}.single-product .product-pagination li+li:before{padding:0 8px 0 0;color:#ccc;content:"/\00a0"}.single-product .product-pagination li a{color:#000;font-weight:200}.single-product .product-pagination li a i{vertical-align:middle}.single-product-slider .carousel .carousel-inner .carousel-caption{text-shadow:none;text-align:left;top:20%;bottom:auto}.single-product-slider .carousel .carousel-inner .carousel-caption h1{font-size:50px;font-weight:100;color:#000}.single-product-slider .carousel .carousel-inner .carousel-caption p{width:50%;font-weight:200}.single-product-slider .carousel .carousel-inner .carousel-caption .btn-main,.single-product-slider .carousel .carousel-inner .carousel-caption .btn-transparent,.single-product-slider .carousel .carousel-inner .carousel-caption .btn-small{margin-top:20px}.single-product-slider .carousel .carousel-control{bottom:auto;background:#fff;width:6%;padding:10px 0}.single-product-slider .carousel .carousel-control i{font-size:40px;text-shadow:none;color:#555}.single-product-slider .carousel .carousel-indicators li img{height:auto;width:60px}.single-product-slider .carousel .carousel-control.right,.single-product-slider .carousel .carousel-control.left{background-image:none;top:40%}.single-product-slider .carousel-indicators{margin:10px 0 0;overflow:auto;position:static;text-align:left;white-space:nowrap;width:100%;overflow:hidden}.single-product-slider .carousel-indicators li{background-color:transparent;-webkit-border-radius:0;border-radius:0;display:inline-block;height:auto;margin:0 !important;width:auto}.single-product-slider .carousel-indicators li.active img{opacity:1}.single-product-slider .carousel-indicators li:hover img{opacity:.75}.single-product-slider .carousel-indicators li img{display:block;opacity:.5}.single-product-details .color-swatches{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;align-items:center}.single-product-details .color-swatches span{width:100px;color:#000;font-size:13px;font-weight:600}.single-product-details .color-swatches a{display:inline-block;width:36px;height:36px;margin-right:5px}.single-product-details .color-swatches li{display:inline-block}.single-product-details .color-swatches .swatch-violet{background-color:#8da1cd}.single-product-details .color-swatches .swatch-black{background-color:#000}.single-product-details .color-swatches .swatch-cream{background-color:#e6e2d6}.single-product-details .product-size{margin-top:20px;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;align-items:center}.single-product-details .product-size span{width:100px;color:#000;font-size:13px;font-weight:600;display:inline-block}.single-product-details .product-size .form-control{display:inline-block;width:130px;letter-spacing:2px;text-transform:uppercase;color:#000;font-size:12px;border:1px solid #e1e1e1;border-radius:0;box-shadow:none}.single-product-details .product-category{margin-top:20px}.single-product-details .product-category>span{width:100px;color:#000;font-size:13px;font-weight:600;display:inline-block}.single-product-details .product-category ul{width:140px;display:inline-block}.single-product-details .product-category ul li{display:inline-block;margin:5px}.single-product-details .product-quantity{margin-top:20px;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;align-items:center}.single-product-details .product-quantity>span{width:100px;color:#000;font-size:13px;font-weight:600;display:inline-block}.single-product-details .product-quantity .product-quantity-slider{width:140px;display:inline-block}.single-product-details .product-quantity .product-quantity-slider input{height:34px}.single-product-details .product-quantity .product-quantity-slider .input-group-btn:first-child>.btn,.single-product-details .product-quantity .product-quantity-slider .p-quantity .input-group-btn:first-child>.btn-group{margin-right:-2px}.single-product-details .product-quantity .product-quantity-slider button{border-radius:0}.bootstrap-touchspin .input-group-btn-vertical{position:relative;white-space:nowrap;width:1%;vertical-align:middle;display:table-cell}.bootstrap-touchspin .input-group-btn-vertical>.btn{display:block;float:none;width:100%;max-width:100%;padding:8px 10px;margin-left:-1px;position:relative}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-radius:0;border-top-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{margin-top:-2px;border-radius:0;border-bottom-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical i{position:absolute;top:3px;left:5px;font-size:9px;font-weight:400}.clients-logo-section{padding-top:30px;padding-bottom:75px}.clients-logo-section .clients-logo-img{padding:0 50px}.clients-logo img{width:auto !important;padding:20px}.about .block h1{font-size:clamp(2rem,5vw,3rem);font-weight:600;line-height:1.3;margin-bottom:1rem;color:#046e6e}.about .block h1.page-title{font-size:clamp(2.5rem,6vw,4rem);margin-top:2rem;text-transform:capitalize}.about .block h2{font-size:clamp(1.25rem,2vw,1.5rem);font-style:italic;font-weight:400;line-height:1.4;color:#222}.about .block h3{font-size:clamp(1.2rem,1.8vw,1.5rem);font-weight:400;line-height:1.6;margin-bottom:1rem;color:inherit}.about .block p{font-style:normal;font-size:clamp(1.3rem,1.5vw,1.4rem);margin-bottom:1.25rem;line-height:1.6}.about .block img{width:100%}.about .about-img{position:relative;overflow:hidden}.about .about-img img{display:block;width:100%;transition:opacity .5s ease-out}.about .about-img .hover-img{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;transition:opacity .5s ease-out}.about .about-img:hover .hover-img{opacity:1}.about .about-img:hover img{opacity:0}.instagram-feed a{margin:6px;margin-right:10px;display:inline-block;margin-bottom:10px;width:23.5%}@media(max-width:768px){.instagram-feed a{width:49%;margin:3px}}@media(max-width:480px){.instagram-feed a{width:100%;margin:3px}}.instagram-feed a:hover img{filter:grayscale(10)}.instagram-feed a img{width:100%}.dashboard-menu .active{background:#185b63;color:#fff;border:1px solid #185b63}.dashboard-menu li{padding:0;margin:0 3px}.dashboard-menu li a{padding:10px 20px;border:1px solid #004753}@media(max-width:768px){.dashboard-menu li a{padding:10px 15px}}@media(max-width:480px){.dashboard-menu li a{padding:10px 5px}}@media(max-width:400px){.dashboard-menu li a{padding:10px 5px;font-size:12px}}.dashboard-wrapper{border:1px solid #004753;margin-top:30px;padding:20px}.dashboard-wrapper h2{font-size:18px}.dashboard-wrapper h4{font-size:16px}.dashboard-wrapper .user-img{width:120px;border-radius:100px}.dashboard-user-profile .user-img{width:180px}.dashboard-user-profile .user-profile-list{margin-top:30px;padding-left:30px}.dashboard-user-profile .user-profile-list li{margin-bottom:8px}.dashboard-user-profile .user-profile-list span{font-weight:700;margin-right:5px;width:100px;display:inline-block}.post.post-single{border:none;margin-bottom:0}.post.post-single .post-title{margin-top:0}@media(max-width:768px){.post.post-single .post-title{margin-top:20px}}.post.post-single .post-thumb{margin-top:30px}.post-sub-heading{border-bottom:1px solid #004753;padding-bottom:20px;letter-spacing:2px;text-transform:uppercase;font-size:16px;margin-bottom:20px}.post-social-share{margin-bottom:50px}.post-comments{margin:30px 0}.post-comments .media{margin-top:20px}.post-comments .media>.pull-left{padding-right:20px}.post-comments .comment-author{margin-top:0;margin-bottom:0;font-weight:500}.post-comments .comment-author a{color:#185b63;font-size:14px;text-transform:uppercase}.post-comments time{margin:0 0 5px;display:inline-block;color:#7c7c7c;font-size:12px}.post-comments .comment-button{color:#185b63;display:inline-block;margin-left:5px;font-size:12px}.post-comments .comment-button i{margin-right:5px;display:inline-block}.post-comments .comment-button:hover{color:#185b63}.post-excerpt h3 a{color:#000}.post-excerpt p{margin:0 0 30px}.post-excerpt blockquote.quote-post{margin:20px 0}.post-excerpt blockquote.quote-post p{line-height:30px;font-size:20px;color:#185b63}.single-blog{background-color:#fff;margin-bottom:50px;padding:20px}.blog-subtitle{font-size:15px;padding-bottom:10px;border-bottom:1px solid #004753;margin-bottom:25px;text-transform:uppercase}.next-prev{border-bottom:1px solid #004753;border-top:1px solid #004753;margin:20px 0;padding:25px 0}.next-prev a{color:#000}.next-prev a:hover{color:#185b63}.next-prev .prev-post i{margin-right:10px}.next-prev .next-post i{margin-left:10px}.social-profile ul li{margin:0 10px 0 0;display:inline-block}.social-profile ul li a{color:#565656;display:block;font-size:16px}.social-profile ul li a i:hover{color:#185b63}.comments-section{margin-top:35px}.author-about{margin-top:40px}.post-author{margin-right:20px}.post-author>img{border:1px solid #004753;max-width:120px;padding:5px;width:100%}.comment-list ul{margin-top:20px}.comment-list ul li{margin-bottom:20px}.comment-wrap{border:1px solid #004753;border-radius:1px;margin-left:20px;padding:10px;position:relative}.comment-wrap .author-avatar{margin-right:10px}.comment-wrap .media .media-heading{font-size:14px;margin-bottom:8px}.comment-wrap .media .media-heading a{color:#185b63;font-size:13px}.comment-wrap .media .comment-meta{font-size:12px;color:#888}.comment-wrap .media p{margin-top:15px}.comment-reply-form{margin-top:80px}.comment-reply-form input,.comment-reply-form textarea{height:35px;border-radius:0;box-shadow:none}.comment-reply-form input:focus,.comment-reply-form textarea:focus{box-shadow:none;border:1px solid #185b63}.comment-reply-form textarea,.comment-reply-form .btn-main,.comment-reply-form .btn-transparent,.comment-reply-form .btn-small{height:auto}.bg-1{position:relative;background-size:contain;background-position:50%;background-repeat:no-repeat;background-attachment:fixed}@media(max-width:1200px){.bg-1{background-attachment:unset}}.bg-1::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:inherit;opacity:.2;z-index:-1}.bg-2{background-size:cover;background-position:50%;background-attachment:fixed;background-color:#185b63}@media(max-width:1200px){.bg-2{background-attachment:unset}}.widget{margin-bottom:65px}@media(max-width:768px){.widget{margin-bottom:35px}}.widget .widget-title{margin-top:0;margin-bottom:15px;font-size:16px;color:#333;font-weight:500;border-bottom:1px solid #004753}.widget.widget-latest-post .media .media-object{width:100px;height:auto}.widget.widget-latest-post .media .media-heading a{color:#000;font-size:16px}.widget.widget-latest-post .media p{font-size:12px;color:#7c7c7c}@media(max-width:992px){.widget.widget-latest-post{padding-top:20px}}.widget.widget-category ul li{padding-top:10px;padding-bottom:10px}.widget.widget-category ul li a{color:gray;padding:10px;padding-left:20px;padding-right:20px;-webkit-transition:padding .3s ease,border .3s ease;-moz-transition:padding .3s ease,border .3s ease;-ms-transition:padding .3s ease,border .3s ease;-o-transition:padding .3s ease,border .3s ease;transition:padding .3s ease,border .3s ease}.widget.widget-category ul li a:before{padding-right:10px}.widget.widget-category ul li a:hover{color:#185b63;padding-left:25px}.widget.widget-category ul li a:active{padding-left:24px;border:1px solid #185b63;border-radius:30px;-webkit-transition:padding 0s ease-in-out;-moz-transition:padding 0s ease-in-out;-ms-transition:padding 0s ease-in-out;-o-transition:padding 0s ease-in-out;transition:padding 0s ease-in-out}.widget.widget-category ul li a.current{color:#fff;background:#185b63;border:1px solid #185b63;border-radius:30px;pointer-events:none;cursor:default}.widget.widget-tag ul li{margin-bottom:10px;display:inline-block;margin-right:5px}.widget.widget-tag ul li a{color:gray;display:inline-block;padding:8px 15px;border:1px solid #004753;border-radius:30px;font-size:14px;-webkit-transition:background-color .3s ease,border .3s ease,color .1s ease;-moz-transition:background-color .3s ease,border .3s ease,color .1s ease;-ms-transition:background-color .3s ease,border .3s ease,color .1s ease;-o-transition:background-color .3s ease,border .3s ease,color .1s ease;transition:background-color .3s ease,border .3s ease,color .1s ease}.widget.widget-tag ul li a:hover{color:#185b63;background:rgba(24,91,99,.3);border:1px solid rgba(24,91,99,.3)}.widget.widget-tag ul li a:active{color:#185b63;border:1px solid #185b63;background:#fff;-webkit-transition:background-color .1s ease;-moz-transition:background-color .1s ease;-ms-transition:background-color .1s ease;-o-transition:background-color .1s ease;transition:background-color .1s ease}.widget.widget-tag ul li a.current{color:#fff;background:#185b63;border:1px solid #185b63;pointer-events:none;cursor:default}.blog{background:#f2f2f2}.post{background:#fff;margin-bottom:55px}@media(max-width:768px){.post{margin-bottom:20px}}.post .post-media.post-thumb img{width:100%;height:auto}.post .post-media.post-media-audio iframe{width:100%}.post .post-title{margin-top:25px;text-transform:uppercase}.post .post-title a{color:#185b63}.post .post-title a:hover{color:#185b63}.post .post-meta{font-size:13px;margin-top:10px}.post .post-meta ul li{display:inline-block;color:#909090;margin-right:20px;font-size:12px;letter-spacing:.5px}.post .post-meta ul li a{color:#909090}.post .post-meta ul li a:hover{color:#185b63}.post .post-meta .post-author{color:#000}.post .post-content{margin-top:20px}.post .post-content p{line-height:26px}.post .post-content ul{font-size:15px;padding:10px 20px;font-family:open sans,sans-serif;list-style:circle}.post .post-content ol{font-size:15px;padding:10px 20px;font-family:open sans,sans-serif}.post .post-content blockquote{margin-top:20px;font-size:18px;border-color:#185b63;padding:10px 20px;text-align:left;color:#737373}.post .post-content .btn-main,.post .post-content .btn-transparent,.post .post-content .btn-small{padding:10px 20px;margin:15px 0;font-size:12px}.post-pagination{margin:0}@media(max-width:992px){.post-pagination{margin-bottom:60px}}@media(max-width:768px){.post-pagination{margin-bottom:25px}}.post-pagination>li{margin:0 2px;display:inline-block;font-size:14px}.post-pagination>li>a{color:#000;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.post-pagination>li>a:hover{color:#fff;background:#185b63;border:1px solid #185b63}.post-pagination>li.active>a{background:#185b63 !important;border:1px solid #185b63 !important}.post-pagination>li:first-child>a,.post-pagination>li:last-child>a{border-radius:0}.coming-soon{background:url(../images/backgrounds/coming-soon.jpg);background-repeat:no-repeat;background-size:cover;color:#fff;display:flex;align-items:center;height:100vh}@media(max-width:400px){.coming-soon{padding:50px 0}}@media(max-width:480px){.coming-soon{padding:50px 0}}.coming-soon .block h1{line-height:65px;font-size:55px;font-weight:600;text-transform:uppercase;margin-bottom:0}@media(max-width:400px){.coming-soon .block h1{font-size:40px;line-height:50px}}@media(max-width:480px){.coming-soon .block h1{font-size:40px;line-height:50px}}.coming-soon .block p{color:#fff;margin-top:10px;font-size:16px}.coming-soon .block .count-down{margin-top:50px}.coming-soon .block .count-down .syotimer-cell{width:25%;padding:15px;display:inline-block;background:rgba(101,94,122,.48)}@media(max-width:400px){.coming-soon .block .count-down .syotimer-cell{width:50%;margin-bottom:10px}}@media(max-width:480px){.coming-soon .block .count-down .syotimer-cell{width:50%}}.coming-soon .block .count-down .syotimer-cell .syotimer-cell__value{font-size:80px;line-height:80px;text-align:center;position:relative;font-weight:700}@media(max-width:400px){.coming-soon .block .count-down .syotimer-cell .syotimer-cell__value{font-size:50px}}.coming-soon .block .count-down .syotimer-cell .syotimer-cell__unit{font-weight:400}@media(max-width:768px){.coming-soon .block .count-down ul li{font-size:50px}}@media(max-width:480px){.coming-soon .block .count-down ul li{font-size:50px}}@media(max-width:400px){.coming-soon .block .count-down ul li{font-size:40px}}.coming-soon .block .count-down ul li:before{content:":";font-size:20pt;opacity:.7;position:absolute;right:0;top:0}.coming-soon .block .count-down ul li:last-child:before{content:''}.coming-soon .block .count-down div:after{content:" " attr(data-interval-text);font-size:20px;font-weight:400;text-transform:capitalize;display:block}.coming-soon .block .copyright-text{font-size:12px}.coming-soon .block .copyright-text a{color:#fff;font-weight:600}.shopping .widget-title{font-weight:400;border-bottom:1px solid #004753;padding-bottom:15px;margin-bottom:15px;text-transform:uppercase;letter-spacing:1px;font-size:16px}.checkout .block{padding:15px;margin-bottom:10px}.checkout-form .form-group{position:relative;margin-bottom:8px}.checkout-form .form-group label{position:absolute;top:18px;left:15px;right:auto;bottom:auto;color:#888;font-size:10px;font-weight:400;text-transform:uppercase;opacity:1 !important;width:85px}.checkout-form .form-group input{border-radius:0;display:block;padding:6px 10px 5px 100px;-moz-appearance:none;-webkit-appearance:none;height:50px}.checkout-form .checkout-country-code .form-group{float:left}.checkout-form .checkout-country-code .form-group:first-child{width:calc(45% - 2px);margin-right:4px}.checkout-form .checkout-country-code .form-group:last-child{width:calc(55% - 2px)}.shopping.cart .product-list .table .cart-amount th{background:#f5f5f5;padding:10px;text-transform:uppercase}.shopping.cart .product-list .table>tbody>tr>td{vertical-align:middle}.shopping.cart .product-list .product-info a{margin-left:10px;color:#000;font-weight:600}.shopping.cart .product-list .product-remove{color:#c7254e}.shopping.cart .account-details{margin-top:30px}.shopping.cart .account-details legend{font-weight:600;font-size:16px;text-transform:uppercase}.shopping.cart .account-details .btn-pay{margin:20px 0}.product-checkout-details .product-card>a{padding-right:20px}.product-checkout-details .product-card .price{margin-top:15px}.product-checkout-details .product-card .media-object{width:80px}.product-checkout-details .product-card h4{font-weight:400;font-size:14px;color:#555}.product-checkout-details .product-card .remove{font-size:12px;cursor:pointer}.product-checkout-details .discount-code{border-top:1px solid #004753;border-bottom:1px solid #004753;margin:20px 0 10px;padding:10px 0}.product-checkout-details .discount-code p{margin:0}.product-checkout-details .discount-code p a{font-weight:400;color:#555}.product-checkout-details .summary-prices{border-style:solid;border-color:#004753;border-width:0 0 1px;padding-bottom:10px}.product-checkout-details .summary-prices li{padding:5px 0}.product-checkout-details .summary-prices li span+span{float:right}.product-checkout-details .summary-total{margin-top:5px}.product-checkout-details .summary-total>span{font-weight:500;font-size:18px}.product-checkout-details .summary-total span+span{float:right}.product-checkout-details .verified-icon{margin-top:25px}.product-checkout-details .verified-icon img{width:100%}.purchase-confirmation .purchase-confirmation-details{padding:20px;border:1px solid #004753}.purchase-confirmation .purchase-confirmation-details .table{margin:0;color:#444}.purchase-confirmation .purchase-confirmation-details .table b,.purchase-confirmation .purchase-confirmation-details .table strong{font-weight:400}.empty-cart .block i{font-size:50px}.success-msg .block i{font-size:40px;background:#0aa8a7;color:#fff;width:60px;height:60px;border-radius:100px;display:inline-block;line-height:60px}.page-404{display:flex;align-items:center;min-height:calc(100vh - (100px + 205px));text-align:center}@media(max-width:992px){.page-404{min-height:calc(100vh - (90px + 205px))}}.page-404 h1{font-size:300px;font-weight:700}@media(max-width:768px){.page-404 h1{font-size:150px}}@media(max-width:480px){.page-404 h1{font-size:130px}}@media(max-width:400px){.page-404 h1{font-size:90px}}.page-404 h2{text-transform:uppercase;font-size:20px;letter-spacing:4px;font-weight:700;margin-top:30px}.page-404 .btn-main,.page-404 .btn-transparent,.page-404 .btn-small{margin-top:40px;margin-bottom:50px}.page-message-sent{display:flex;align-items:center;min-height:calc(100vh - (100px + 205px));text-align:center}@media(max-width:992px){.page-message-sent{min-height:calc(100vh - (90px + 205px))}}.page-message-sent h1{font-size:50px;font-weight:700}@media(max-width:480px){.page-message-sent h1{font-size:40px}}@media(max-width:400px){.page-message-sent h1{font-size:30px}}.page-message-sent h2{text-transform:uppercase;font-size:20px;font-weight:700;letter-spacing:1px;margin-top:30px}.page-message-sent .btn-main,.page-message-sent .btn-transparent,.page-message-sent .btn-small{margin-top:40px;margin-bottom:50px}.page-message-sent img{width:50%;max-height:200px;margin-top:40px;margin-bottom:40px}.footer{background:#f3f3f3;min-height:205px;text-align:center;padding-top:67px}.footer p{font-size:13px;line-height:25px;color:#919191}.footer a{color:#595959}.footer .footer-menu{padding-bottom:25px}.footer .footer-menu ul{margin:0;padding:0}.footer .footer-menu ul li{display:inline-block;padding:0 20px}.footer .footer-menu ul li a{display:inline-block;color:#494949}.footer .footer-menu ul li a:hover{color:#000}.footer .copyright a{font-weight:600}.hero-section{width:100%;text-align:center;padding:0 1rem}.hero-title{font-size:clamp(1.8rem,4vw,4rem);font-weight:400;line-height:1.2;color:#046e6e;word-break:normal;hyphens:none}section{margin-bottom:0}.section{padding-top:90px;padding-bottom:90px;margin-top:80px;margin-bottom:80px}.description{font-size:22px;line-height:1.5;padding-top:90px;padding-bottom:1px}@media(max-width:768px){.description{font-size:18px;padding-top:70px}}@media(max-width:480px){.description{font-size:16px;padding-top:50px}}.facts .fact-item{padding:15px}.fact-image{height:250px;width:auto;object-fit:contain;border-radius:8px;box-shadow:0 4px 8px rgba(0,0,0,.1)}.custom-background{background-size:cover;background-position:50%;background-repeat:no-repeat}.gif-background{background-image:url(/images/BackgroundAnimation.svg);background-repeat:no-repeat;position:relative;background-size:cover;background-position:50%}@media(max-width:991px){.gif-background{background-size:120%;background-position:50% 40%}}@media(max-width:575px){.gif-background{background-size:180%;background-position:50%}}.gif-background::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background-color:rgba(255,255,255,.8)}@media(max-width:575px){.gif-background::after{background-color:rgba(255,255,255,.5)}}.service-arrow .block{display:flex;align-items:center;justify-content:space-between;padding:20px;border-radius:100px;color:#8a0909}.service-content{flex:1}.service-image{margin:0}.service-image img{max-width:600px;height:auto;display:block}.bg-service1,.bg-service3,.bg-service5,.bg-service7{background-color:#8bcfd6}.bg-service2,.bg-service4,.bg-service6,.bg-service8{background-color:#6baeb5}.service-grid{display:grid;gap:1.5rem;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));justify-content:center;align-items:stretch;margin:0 auto;max-width:1200px;padding:0 1rem}.service-item-fixed{width:100%;border-radius:10px;overflow:hidden;position:relative}.zoom-wrap{transition:transform .3s ease;width:100%;height:100%;position:relative}.zoom-wrap:hover{transform:scale(1.06)}.zoom-wrap img{width:100%;height:100%;object-fit:cover;display:block}.zoom-wrap a{display:block;text-decoration:none;color:inherit}.zoom-wrap .overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,.4);z-index:1}.overlay-text{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:#fff;font-size:2.3em;font-weight:700;text-shadow:0 2px 4px rgba(0,0,0,.8);z-index:2}.spacer-lg{height:0}.service-item{position:relative;overflow:hidden;border-radius:8px}.service-item img{width:100%;display:block}.service-item .overlay{position:absolute;inset:0;background:rgba(0,0,0,.3)}.service-item .overlay-text{font-size:clamp(2rem,2vw,3rem)}.info-card{text-align:center;padding:1rem}.info-card i{font-size:2rem;margin-bottom:.5rem}.info-card h3{font-weight:600;margin-top:.5rem;margin-bottom:.25rem;font-size:1.2rem;color:#046e6e}.info-card p{font-size:1rem;color:#333}.why-grid{display:grid;gap:2rem;grid-template-columns:repeat(3,minmax(0,1fr));align-items:stretch}@media(max-width:991.98px){.why-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:575.98px){.why-grid{grid-template-columns:1fr}}.service-card{position:relative;display:flex;flex-direction:column;height:100%;background:#fff;padding:1.65rem 1.5rem;border-radius:14px;box-shadow:0 4px 12px rgba(0,0,0,5%);transition:box-shadow .25s ease;text-align:center;cursor:default}.service-card::after{content:'';position:absolute;inset:0;border-radius:inherit;background:radial-gradient(120% 100% at 50% 0%,rgba(245,166,35,.1),rgba(245,166,35,0) 60%);opacity:0;transition:opacity .25s ease;pointer-events:none}.service-card:hover{box-shadow:0 10px 28px rgba(0,0,0,8%)}.service-card:hover::after{opacity:.04}.service-icon{width:56px;height:56px;object-fit:contain;margin:0 auto .85rem;display:block;transform-origin:center}.service-card-title{font-weight:700;margin:.25rem 0 .5rem}.service-card-description{line-height:1.65;margin:0;color:#333}@keyframes amp-pop{0%{transform:scale(.92);opacity:0}60%{transform:scale(1.02);opacity:1}100%{transform:scale(1)}}.service-card.aos-animate .service-icon{animation:amp-pop .45s cubic-bezier(.2,.9,.2,1)both}@keyframes amp-breathe{0%,100%{transform:translateY(0)}50%{transform:translateY(-2.5px)}}.service-card.aos-animate .service-icon{animation:amp-pop .45s cubic-bezier(.2,.9,.2,1)both,amp-breathe 7s ease-in-out .45s infinite}@media(prefers-reduced-motion:reduce){.service-card,.service-card::after{transition:none !important}.service-card .service-icon{animation:none !important}}.my-container{width:80%;margin:0 auto}.custom-container{max-width:1800px;margin:0 auto;padding-left:30px;padding-right:30px}.fixed-width{max-width:1200px;margin:0 auto}.fixed-text{max-width:600px;margin-right:15px}.page-title::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:#fff;z-index:-1}.custom-image{width:100px;max-width:70%;height:auto}.custom-title{color:#046e6e}.hover-link{transition:color .3s ease}.hover-link:hover{color:#f5a623}.about-cta{color:#046e6e;font-weight:700;text-decoration:none;border-bottom:2px solid transparent;transition:color .2s ease,border-color .2s ease}.about-cta:hover,.about-cta:focus{color:#f5a623;border-bottom-color:#f5a623}.mehrwerte-grid{display:grid;gap:0;grid-template-columns:repeat(1,1fr)}@media(min-width:768px){.mehrwerte-grid{grid-template-columns:repeat(2,1fr)}}@media(min-width:1200px){.mehrwerte-grid{grid-template-columns:repeat(4,1fr)}}.mehrwerte-box{display:flex;flex-direction:column;justify-content:space-between;height:100%;padding:30px;border-radius:8px;transition:background-color .3s ease,transform .3s ease,box-shadow .3s ease}.mehrwerte-box:hover{background-color:teal;transform:translateY(-4px);box-shadow:0 8px 20px rgba(0,0,0,.1)}.mehrwerte-box:hover h4,.mehrwerte-box:hover p{color:#000 !important}.mehrwerte-box h4,.mehrwerte-box p{color:#000 !important;transition:color .3s ease}.container-fluid{max-width:100%;padding-left:5vw;padding-right:5vw}#about-intro .intro-text{max-width:200ch;hyphens:auto;-webkit-hyphens:auto;overflow-wrap:anywhere;margin-bottom:1rem}#about-intro .intro-text p,#about-intro .intro-text li{margin-bottom:1rem}.logo-container{width:80%;margin:0 auto;display:flex;flex-direction:row;justify-content:center;align-items:center;gap:20px}.frame1{flex:0 0 40%;display:flex;justify-content:center;align-items:center}.frame2{flex:0 0 60%;display:flex;justify-content:center;align-items:center}.banner-logo{max-width:100%;height:auto;opacity:0}.frame1 .banner-logo{animation:moveIn 1s forwards}.frame2 .banner-logo{animation:moveIn 1s .5s forwards}@keyframes moveIn{from{transform:translateX(50px);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fade-in-title{opacity:0;animation:fadeTitle 1.5s forwards 1s}@keyframes fadeTitle{to{opacity:1}}@media(max-width:768px){.logo-container{flex-direction:column;width:90%}.frame1,.frame2{flex:none;width:100%;margin-bottom:20px}}body{font-family:Arial,sans-serif;text-align:center;background-color:#fff;margin:0;padding:20px}#leistungen-fokusthemen .service-item{position:relative}#leistungen-fokusthemen .service-item .overlay-text{transition:color .25s ease}#leistungen-fokusthemen .service-item:hover .overlay-text{color:#f5a623}#leistungen-fokusthemen .grid-spacer{height:4rem}@media(max-width:992px){#leistungen-fokusthemen .grid-spacer{height:2.5rem}}.darum-image-wrapper{margin-top:4rem}.bg-light-grey{background-color:#f3f3f3}#about .about-row{min-height:400px}#about .about-image-wrap{width:100%;display:flex;align-items:flex-end;padding-top:30px}#about .about-image{width:100%;max-width:clamp(200px,38vw,300px);height:auto;object-fit:contain;margin-left:auto}#about .text-left p{margin-bottom:1rem}#about .text-left a,#about .text-left b a,#about .text-left strong a{color:var(--amp-primary) !important;font-weight:700;text-decoration:none;border-bottom:2px solid transparent;transition:color .2s ease,border-color .2s ease}#about .text-left a:hover,#about .text-left b a:hover,#about .text-left strong a:hover,#about .text-left a:focus{color:var(--amp-accent) !important;border-bottom-color:var(--amp-accent)}#about .text-left a:focus-visible,#about .text-left b a:focus-visible,#about .text-left strong a:focus-visible{outline:2px dashed var(--amp-accent);outline-offset:2px}.darum-aff-row{display:flex;align-items:center;justify-content:center;gap:clamp(1rem,3vw,3rem);flex-wrap:wrap;margin-top:clamp(3rem,3vw,5rem)}.aff-group{display:flex;align-items:center;justify-content:center;gap:clamp(.5rem,1.5vw,1rem)}.aff-caption{margin:0 0 .5rem;font-size:clamp(.85rem,1vw,.95rem);color:#6b7280;text-align:left}.aff-logos{display:flex;align-items:center;gap:clamp(.5rem,1vw,.75rem);flex-wrap:wrap}.aff-logos img,.aff-right .aff-pva-logo{height:120px;width:auto;display:block;object-fit:contain}.aff-right{display:flex;align-items:center;justify-content:center;text-decoration:none;color:inherit}@media(min-width:900px){.aff-right{padding-left:clamp(.75rem,2vw,2rem);border-left:1px solid #e5e7eb}}@media(max-width:899.98px){.aff-right{border-left:0;padding-left:0}}@media(max-width:480px){.aff-logos img,.aff-right .aff-pva-logo{height:60px;width:auto}}.aff-right:focus-visible{outline:2px dashed var(--amp-accent);outline-offset:4px}.cta{--cta-primary:#046e6e;--cta-accent:#F5A623;--btn-py:clamp(1rem, 1.2vw, 1.2em);--btn-px:clamp(1rem, 1.6vw, 1.2rem);--btn-fs:clamp(1rem, 1.6vw, 1.8rem);position:relative;overflow:hidden;padding:clamp(6rem,10vw,12rem)0;background:0 0}.cta__bg{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}.cta__energy-lines{position:absolute;top:0;left:0;width:100%;height:100%;opacity:.6}.energy-line-h{position:absolute;height:1px;background:linear-gradient(90deg,transparent 0%,var(--cta-accent) 10%,var(--cta-accent) 90%,transparent 100%);width:200px;animation:energyFlowH 8s linear infinite}.energy-line-h::after{content:'';position:absolute;right:0;top:50%;transform:translateY(-50%);width:20px;height:3px;background:var(--cta-accent);box-shadow:0 0 10px var(--cta-accent),0 0 20px var(--cta-accent);border-radius:50%}.energy-line-h.energy-line-h1{top:20%;animation-duration:6s}.energy-line-h.energy-line-h2{top:40%;animation-duration:7s;animation-delay:2s}.energy-line-h.energy-line-h3{top:60%;animation-duration:8s;animation-delay:4s}.energy-line-h.energy-line-h4{top:80%;animation-duration:6.5s;animation-delay:1s}@keyframes energyFlowH{0%{left:-200px;opacity:0}10%{opacity:1}90%{opacity:1}100%{left:100%;opacity:0}}.energy-line-v{position:absolute;width:1px;background:linear-gradient(180deg,transparent 0%,var(--cta-accent) 10%,var(--cta-accent) 90%,transparent 100%);height:150px;animation:energyFlowV 10s linear infinite}.energy-line-v::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:3px;height:20px;background:var(--cta-accent);box-shadow:0 0 10px var(--cta-accent),0 0 20px var(--cta-accent);border-radius:50%}.energy-line-v.energy-line-v1{left:15%;animation-duration:7s;animation-delay:1s}.energy-line-v.energy-line-v2{left:35%;animation-duration:9s;animation-delay:3s}.energy-line-v.energy-line-v3{left:65%;animation-duration:8s;animation-delay:2s}.energy-line-v.energy-line-v4{left:85%;animation-duration:7.5s;animation-delay:4s}@keyframes energyFlowV{0%{top:-150px;opacity:0}10%{opacity:1}90%{opacity:1}100%{top:100%;opacity:0}}.energy-node{position:absolute;width:6px;height:6px;background:var(--cta-accent);border-radius:50%;box-shadow:0 0 10px var(--cta-accent);animation:nodePulse 2s ease-in-out infinite}.energy-node.energy-node1{top:20%;left:15%;animation-delay:0s}.energy-node.energy-node2{top:40%;left:35%;animation-delay:.5s}.energy-node.energy-node3{top:60%;left:65%;animation-delay:1s}.energy-node.energy-node4{top:80%;left:85%;animation-delay:1.5s}.energy-node.energy-node5{top:30%;left:50%;animation-delay:.25s}.energy-node.energy-node6{top:70%;left:25%;animation-delay:.75s}@keyframes nodePulse{0%,100%{transform:scale(1);opacity:.6}50%{transform:scale(1.5);opacity:1}}.cta .my-container{position:relative;z-index:1;width:100%;max-width:1360px;margin-inline:auto;padding-inline:clamp(16px,3vw,24px)}.cta__wrap{text-align:center;max-width:90rem;margin:0 auto;padding:0 clamp(1rem,3vw,2rem)}.cta__title{margin:0;color:var(--cta-primary);font-weight:700;letter-spacing:.2px;position:center;z-index:2}@media(min-width:1200px){.cta__title{white-space:nowrap}}.cta__lead{margin:.9rem auto 0;color:#0f172a;line-height:1.55;max-width:58rem;position:relative;z-index:2}.cta__accent{color:var(--cta-accent);font-weight:700;display:block;margin-top:.5rem}.cta__actions{display:flex;flex-wrap:wrap;justify-content:center;gap:clamp(1rem,2.4vw,1.6rem);margin-top:clamp(1.4rem,3vw,2.2rem);position:relative;z-index:2}.cta__btn,button.cta__btn{display:inline-flex;align-items:center;gap:.7rem;padding:var(--btn-py,12px)var(--btn-px,22px);border-radius:9999px;background:#fff;color:var(--cta-primary,#0a8f8d);border:1px solid rgba(0,0,0,6%);box-shadow:0 1px 3px rgba(0,0,0,6%);text-decoration:none;font-weight:700;font-size:var(--btn-fs,1rem);transition:background .15s ease,color .15s ease,box-shadow .2s ease,transform .04s ease;position:relative;overflow:hidden;-webkit-appearance:none;appearance:none}.cta__btn::before{content:"";position:absolute;top:50%;left:50%;width:0;height:0;border-radius:50%;background:var(--cta-accent,#F5A623);transform:translate(-50%,-50%);transition:width .6s ease,height .6s ease;z-index:-1}.cta__btn:hover{background:var(--cta-accent,#F5A623);color:#fff;box-shadow:0 8px 22px rgba(245,166,35,.35)}.cta__btn:hover::before{width:300%;height:300%}.cta__btn:active{transform:translateY(1px)}.cta__btn:focus-visible{outline:2px dashed var(--cta-accent,#F5A623);outline-offset:3px}.cta__social{display:flex;justify-content:center;gap:clamp(.9rem,2vw,1.2rem);margin-top:clamp(1.2rem,2.4vw,1.6rem);position:relative;z-index:2}.cta__social-link{width:clamp(65px,10vw,70px);height:clamp(65px,10vw,70px);display:inline-flex;align-items:center;justify-content:center;background:#fff;border-radius:9999px;box-shadow:0 1px 3px rgba(0,0,0,6%);transition:background .2s ease,box-shadow .2s ease,transform .04s ease;text-decoration:none;position:relative;overflow:hidden}.cta__social-link::before{content:'';position:absolute;top:50%;left:50%;width:0;height:0;border-radius:50%;background:var(--cta-accent);transform:translate(-50%,-50%);transition:width .4s ease,height .4s ease;z-index:-1}.cta__social-link:hover{background:var(--cta-accent);box-shadow:0 6px 16px rgba(4,110,110,.25);transform:translateY(-2px)}.cta__social-link:hover::before{width:100%;height:100%}.cta__social-link:hover img{filter:invert(1)}.cta__social-link:active{transform:translateY(1px)}.cta__social-link img{width:clamp(24px,3vw,28px);height:auto;display:block;transition:filter .2s ease;position:relative;z-index:1}@media(max-width:768px){.energy-line-h2,.energy-line-h4,.energy-line-v2,.energy-line-v4,.energy-node4,.energy-node5,.energy-node6{display:none}}#about-intro.section.section-tight{padding-top:28px;padding-bottom:60px}#about-intro .intro-text{font-size:inherit;line-height:inherit}#about-intro .intro-text p{margin-bottom:.8rem}#about-intro .intro-badge{font-size:1rem;padding:.45em .9em;background:#006464;border-radius:999px}.intro-video{width:100%;height:100%;object-fit:cover;display:block;border-radius:12px}.intro-media{overflow:hidden;border-radius:12px}#about-intro .intro-content{}#about-intro .intro-content .article-copy p{margin-bottom:1rem}#about-intro .intro-content .article-copy p:last-child{margin-bottom:0}#about-intro .intro-content .article-copy strong{font-weight:700}#about-intro .intro-image-wrapper{position:relative}#about-intro .intro-image{display:block;width:100%;height:auto;border-radius:.75rem;box-shadow:0 6px 30px rgba(0,0,0,5%);object-fit:cover}.mission-section{}.mission-section .mission-tabs-wrapper{max-width:920px;margin-inline:auto}.mission-section .mission-tabs{border-bottom:1px solid #eaeaea;margin-bottom:1rem;text-align:center}.mission-section .mission-tabs .nav-link{border:0;padding:.45rem .9rem;color:#046e6e;opacity:.7;background:0 0;cursor:pointer;transition:all .2s ease}.mission-section .mission-tabs .nav-link:hover{opacity:1;color:#f5a623;border-bottom:2px solid #f5a623}.mission-section .mission-tabs .nav-link.active{opacity:1;color:#046e6e;border-bottom:2px solid #046e6e}.mission-section .mission-tab-content .tab-pane{display:none}.mission-section .mission-tab-content .tab-pane.active{display:block}.mission-section .mission-tab-content .tab-inner{background:#fff;border:1px solid #eee;border-radius:.75rem;padding:1.25rem;box-shadow:0 8px 24px rgba(0,0,0,4%)}.mission-section .mission-tab-content .tab-inner p:last-child{margin-bottom:0}@media(max-width:576px){.mission-section .mission-tabs .nav-link{padding:.4rem .7rem}.mission-section .mission-tabs-wrapper{max-width:100%}}.team-image{display:block;width:100%;height:auto;border-radius:.75rem;box-shadow:0 6px 30px rgba(0,0,0,5%);object-fit:cover}.founder-card{background:#fff;border:1px solid #eee;border-radius:.75rem;padding:1.25rem;height:100%;box-shadow:0 8px 24px rgba(0,0,0,4%)}.founder-card .founder-name{margin-bottom:.5rem;font-weight:700}.founder-card .founder-description p{margin-bottom:.8rem}.founder-card .founder-description p:last-child{margin-bottom:0}#about-intro .badge{border:1px solid #eaeaea;background:#fafafa;font-weight:600}#about-intro.section{padding-top:90px;padding-bottom:90px}.mission-section.section{padding-top:0;padding-bottom:90px}#about-intro .intro-text.article-copy{max-width:100ch;margin:0 auto;text-align:justify;text-justify:inter-word;hyphens:auto;-webkit-hyphens:auto;overflow-wrap:anywhere}#about-intro .intro-text.article-copy p{margin-bottom:.9rem}#about-intro h2{text-wrap:balance;margin-bottom:4rem}.text-block{text-align:justify}.text-left{text-align:left}.logo-container{width:80%;margin:0 auto;display:flex;flex-direction:row;justify-content:center;align-items:center;gap:20px}.frame1{flex:0 0 40%;display:flex;justify-content:center;align-items:center}.frame2{flex:0 0 60%;display:flex;justify-content:center;align-items:center}.banner-logo{max-width:100%;height:auto;opacity:0}.frame1 .banner-logo{animation:moveIn 1s forwards}.frame2 .banner-logo{animation:moveIn 1s .5s forwards}@keyframes moveIn{from{transform:translateX(50px);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fade-in-title{opacity:0;animation:fadeTitle 1.5s forwards 1s}@keyframes fadeTitle{to{opacity:1}}@media(max-width:768px){.logo-container{flex-direction:column;width:90%}.frame1,.frame2{flex:none;width:100%;margin-bottom:20px}}.custom-container{max-width:1800px;margin:0 auto;padding-left:30px;padding-right:30px}body{font-family:Arial,sans-serif;text-align:center;background-color:#fff;margin:0;padding:20px} \ No newline at end of file diff --git a/resources/_gen/assets/scss/style.scss_36bc4e0ffe4a90eb34a36b045730109f.json b/resources/_gen/assets/scss/style.scss_36bc4e0ffe4a90eb34a36b045730109f.json new file mode 100644 index 0000000..0095485 --- /dev/null +++ b/resources/_gen/assets/scss/style.scss_36bc4e0ffe4a90eb34a36b045730109f.json @@ -0,0 +1 @@ +{"Target":"css/style.min.css","MediaType":"text/css","Data":{}} \ No newline at end of file diff --git a/resources/_gen/assets/scss/style.scss_5ae5eeac6a382c32d8d68b77fa936373.content b/resources/_gen/assets/scss/style.scss_5ae5eeac6a382c32d8d68b77fa936373.content new file mode 100644 index 0000000..a2a8bfe --- /dev/null +++ b/resources/_gen/assets/scss/style.scss_5ae5eeac6a382c32d8d68b77fa936373.content @@ -0,0 +1,3776 @@ +@charset "UTF-8"; +/*=== MEDIA QUERY ===*/ +body { + font-family: 'Open Sans', sans-serif; + font-size: 16px; + line-height: 1.6; + color: #222; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } + +.hero-subtitle { + font-size: clamp(1.25rem, 2.5vw, 1.75rem); + text-align: center; + color: #004753; + text-transform: uppercase; + letter-spacing: 0.12em; + line-height: 1.4; + margin-top: 1rem; } + +h1 { + font-size: clamp(2.5rem, 5vw, 4rem); + font-weight: 600; + line-height: 1.3; + margin-bottom: 1rem; + color: black; } + +h1.page-title { + font-size: clamp(2.5rem, 6vw, 4rem); + margin-top: 2rem; + text-transform: capitalize; } + +h2 { + font-size: clamp(2.5rem, 5vw, 4rem); + font-weight: 600; + line-height: 1.3; + margin-bottom: 1rem; + color: #046e6e; } + +h3 { + font-size: clamp(2rem, 3vw, 2.5rem); + font-style: italic; + font-weight: 400; + line-height: 1.4; + margin-bottom: 5rem; + color: black; } + +h4 { + font-size: clamp(1.8rem, 1.8vw, 2rem); + font-weight: normal; + line-height: 1.6; + margin-bottom: 1rem; + color: inherit; + color: #F5A623; } + +p { + font-style: normal; + font-size: clamp(1.5rem, 1.5vw, 1.8rem); + margin-bottom: 1.25rem; + line-height: 1.6; } + +.text-left { + text-align: left; } + +.text-right { + text-align: right; } + +.text-center { + text-align: center; } + +.text-justify { + text-align: justify; } + +strong, b { + font-weight: 700; } + +p { + margin-bottom: 1.25rem; } + +ul, ol { + padding-left: 1.5rem; + margin-bottom: 1.5rem; } + +li { + margin-bottom: 0.5rem; + line-height: 1.6; } + +a { + color: #046e6e; + text-decoration: none; + transition: color 0.3s ease; } + +a:hover { + color: #F5A623; + text-decoration: underline; } + +ul { + margin: 0; + padding-left: 0; + list-style-type: none; } + +iframe { + border: 0; } + +img { + max-width: 100%; + height: auto; } + +a, +a:focus, +a:hover { + text-decoration: none; + outline: 0; + color: #185b63; } + +blockquote { + font-size: 18px; + border-color: #185b63; + padding: 20px 40px; + text-align: left; + color: #737373; } + +.navbar-toggle .icon-bar { + background: #185b63; } + +input[type="email"], +input[type="password"], +input[type="text"], +input[type="tel"] { + box-shadow: none; + height: 45px; + outline: none; + font-size: 14px; } + input[type="email"]:focus, + input[type="password"]:focus, + input[type="text"]:focus, + input[type="tel"]:focus { + box-shadow: none; + border: 1px solid #185b63; } + +.form-control { + box-shadow: none; + border-radius: 0; } + .form-control:focus { + box-shadow: none; + border: 1px solid #185b63; } + +.slick-slide { + outline: 0; } + +.btn-main, .btn-small, .btn-transparent { + background: #185b63; + color: #ffffff; + display: inline-block; + font-size: 12px; + letter-spacing: 1px; + padding: 20px 20px; + text-transform: uppercase; + border-radius: 10px; + text-align: center; + -webkit-transition: all 0.2s ease; + -moz-transition: all 0.2s ease; + -ms-transition: all 0.2s ease; + -o-transition: all 0.2s ease; + transition: all 0.2s ease; } + .btn-main.btn-icon i, .btn-icon.btn-small i, .btn-icon.btn-transparent i { + font-size: 16px; + vertical-align: middle; + margin-right: 5px; } + .btn-main:hover, .btn-small:hover, .btn-transparent:hover { + background: black; + color: #ffffff; } + +.btn-solid-border { + border: 2px solid #ffffff; + background: transparent; + color: #ffffff; } + .btn-solid-border:hover { + background: whitesmoke; } + +.btn-transparent { + background: transparent; + padding: 0; + color: #185b63; } + .btn-transparent:hover { + background: transparent; + color: #185b63; } + +.btn-large { + padding: 20px 45px; } + .btn-large.btn-icon i { + font-size: 16px; + vertical-align: middle; + margin-right: 5px; } + +.btn-small { + padding: 10px 25px; + font-size: 12px; } + +.btn-round { + border-radius: 2px; } + +.btn-round-full { + border-radius: 50px; } + +.btn.active:focus, +.btn:active:focus, +.btn:focus { + outline: 0; } + +.mt-10 { + margin-top: 20px; } + +.mt-20 { + margin-top: 20px; } + +.mt-30 { + margin-top: 30px; } + +.mt-40 { + margin-top: 40px; } + +.mt-50 { + margin-top: 50px; } + +.btn:focus { + color: #d9d9d9; } + +.w-100 { + width: 100%; } + +.margin-0 { + margin: 0 !important; } + +/* preloader */ +.preloader { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: #ffffff; + z-index: 9999; + display: flex; + align-items: center; + justify-content: center; } + +.bg-shadow { + background-color: #ffffff; + box-shadow: 0 16px 24px rgba(0, 0, 0, 0.08); + padding: 20px; } + +.bg-gray { + background: #f5f5f5; } + +.bg-primary { + background: #185b63; } + +.bg-primary-dark { + background: #0e353a; } + +.bg-primary-darker { + background: #041011; } + +.bg-dark { + background: #202122; } + +.section { + padding: 10px 0; } + @media (max-width: 768px) { + .section { + padding-top: 20px; + padding-bottom: 20px; } } +.section-sm { + padding: 70px 0; } + +.title { + padding: 20px 0 30px; } + +.section-subtitle { + font-size: 28px; + font-weight: 600; + margin-bottom: 30px; } + @media (max-width: 400px) { + .section-subtitle { + font-size: 22px; } } + @media (max-width: 480px) { + .section-subtitle { + font-size: 20px; } } +.page-title { + height: auto; + /* Höhe basierend auf Inhalt */ + padding: 85px 0; } + .page-title .block { + text-align: center; } + +.heading { + padding-bottom: 60px; + text-align: center; } + +.page-wrapper { + padding: 70px 0; } + @media (max-width: 768px) { + .page-wrapper { + padding-top: 20px; + padding-bottom: 20px; } } +.social-media-icons ul li { + display: inline-block; } + .social-media-icons ul li a { + font-size: 18px; + color: #333333; + display: inline-block; + padding: 7px 12px; + color: #ffffff; } + .social-media-icons ul li .twitter { + background: #00aced; } + .social-media-icons ul li .facebook { + background: #3b5998; + padding: 7px 18px; } + .social-media-icons ul li .googleplus { + background: #dd4b39; } + .social-media-icons ul li .dribbble { + background: #ea4c89; } + .social-media-icons ul li .instagram { + background: #bc2a8d; } + +.dropdown-slide { + position: static; } + .dropdown-slide .open > a, + .dropdown-slide .open > a:focus, + .dropdown-slide .open > a:hover { + background: transparent; } + .dropdown-slide.full-width .dropdown-menu { + left: 0 !important; + right: 0 !important; } + .dropdown-slide:hover .dropdown-menu { + display: none; + opacity: 1; + display: block; + transform: translate(0px, 0px); + opacity: 1; + visibility: visible; + color: #737373; + transform: translateY(0px); } + .dropdown-slide .dropdown-menu { + border-radius: 0; + opacity: 1; + visibility: visible; + position: absolute; + padding: 15px; + border: 1px solid #ebebeb; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); + position: absolute; + display: block; + visibility: hidden; + opacity: 0; + transform: translateY(30px); + transition: visibility 0.2s, opacity 0.2s, transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99); } + @media (max-width: 480px) { + .dropdown-slide .dropdown-menu { + transform: none; } } +.commonSelect { + margin-left: 10px; + padding-right: 6px; + position: relative; } + .commonSelect:before { + content: '\f3d0'; + font-family: "Font Awesome 5 Free"; + position: absolute; + right: -4px; + top: 4px; + font-size: 10px; } + .commonSelect select { + cursor: pointer; + border: none; + padding: 0; + height: auto; + color: #555555; } + .commonSelect select:focus { + box-shadow: none; + border: none; } + +.tabCommon .nav-tabs { + border-bottom: 0; + margin-bottom: 10px; } + .tabCommon .nav-tabs li { + margin-right: 5px; } + .tabCommon .nav-tabs li.active a { + background-color: #185b63; + border: 1px solid #185b63; + color: #ffffff; } + .tabCommon .nav-tabs a { + border-radius: 0; + background: #f5f5f5; } + .tabCommon .nav-tabs a:hover { + border: 1px solid transparent; + background: #185b63; + color: #ffffff; } + +.tabCommon .tab-content { + padding: 20px; + border: 1px solid #004753; } + +.commonAccordion .panel, .commonAccordion-2 .panel { + border-radius: 0; + box-shadow: none; } + .commonAccordion .panel .panel-heading, .commonAccordion-2 .panel .panel-heading { + background: transparent; + padding: 0; } + .commonAccordion .panel .panel-title, .commonAccordion-2 .panel .panel-title { + position: relative; } + .commonAccordion .panel .panel-title a, .commonAccordion-2 .panel .panel-title a { + display: block; + font-size: 14px; + text-transform: uppercase; + padding: 10px 10px; } + .commonAccordion .panel .panel-title a:before, .commonAccordion-2 .panel .panel-title a:before { + color: #555555; + content: "\f209"; + position: absolute; + right: 25px; + font-family: "Font Awesome 5 Free"; } + .commonAccordion .panel .panel-title a.collapsed:before, .commonAccordion-2 .panel .panel-title a.collapsed:before { + content: "\f217"; } + +.list-circle { + padding-left: 20px; } + .list-circle li { + list-style-type: circle; } + +.play-icon { + border: 1px solid #004753; + display: inline-block; + width: 60px; + height: 60px; + border-radius: 50px; + font-size: 30px; } + .play-icon i { + line-height: 60px; } + +.alert-common { + border-radius: 0; + border-width: 2px; } + .alert-common i { + margin: 0 5px; + font-size: 16px; } + +.alert-solid { + background: transparent; + color: #185b63; } + +@media (max-width: 480px) { + .buttonPart li { + margin-bottom: 8px; } } + +@media (max-width: 768px) { + .buttonPart li { + margin-bottom: 8px; } } + +.overly, .page-title { + position: relative; } + .overly:before, .page-title:before { + content: ""; + position: absolute; + left: 0; + top: 0; + bottom: 0; + right: 0; + width: 100%; + height: 100%; + background: rgba(42, 68, 71, 0.5); + /* Helleres Overlay */ + opacity: 0.3; + /* Weniger Opazität */ } + +.owl-dots .owl-dot.active span, +.owl-theme .owl-dots .owl-dot:hover span { + background: #185b63 !important; } + +#success, +#error { + display: none; } + +.sticky-top { + position: sticky; + top: 0; } + @media (max-width: 992px) { + .sticky-top { + position: static; } } +span.cloaked-e-mail:before { + content: attr(data-domain) "@" attr(data-user); + unicode-bidi: bidi-override; + direction: rtl; } + +@media (min-width: 992px) { + .row .no-float { + display: table-cell; + float: none; } } + +/* Maus und Mausrad*/ +.scrolldown { + --sizeX: 30px; + --sizeY: 50px; + position: relative; + width: var(--sizeX); + height: var(--sizeY); + margin-left: calc(50% - var(--sizeX) / 2); + margin-top: 100px; + border: calc(var(--sizeX) / 10) solid currentColor; + border-radius: 50px; + box-sizing: border-box; + margin-bottom: 16px; + color: white; + /* Anfangsfarbe */ + transition: color 0.3s; } + +.scrolldown::before { + content: ""; + position: absolute; + bottom: 30px; + left: 50%; + width: 6px; + height: 6px; + margin-left: -3px; + background-color: currentColor; + border-radius: 100%; + animation: scrolldown-anim 2s infinite; + box-sizing: border-box; + box-shadow: 0px -5px 3px 1px #ffffff66; } + +.scrolldown:hover { + color: #F5A623; + /* Neue Farbe beim Hover */ } + +@keyframes scrolldown-anim { + 0% { + opacity: 0; + height: 6px; } + 40% { + opacity: 1; + height: 10px; } + 80% { + transform: translate(0, 20px); + height: 10px; + opacity: 0; } + 100% { + height: 3px; + opacity: 0; } } + +.chevrons { + padding: 6px 0 0 0; + margin-left: -3px; + /* Überprüfen, ob dies benötigt wird */ + margin-top: 48px; + width: 30px; + display: flex; + flex-direction: column; + align-items: center; } + +.chevrondown { + margin-top: -6px; + position: relative; + border: solid currentColor; + border-width: 0 3px 3px 0; + display: inline-block; + width: 10px; + height: 10px; + transform: rotate(45deg); } + +.chevrondown:hover { + color: #F5A623; } + +.chevrondown:nth-child(odd) { + animation: pulse 500ms ease infinite alternate; } + +.chevrondown:nth-child(even) { + animation: pulse 500ms ease infinite alternate 250ms; } + +.scrolldown { + color: black; + transition: color 0.3s; } + +.scrolldown:hover { + color: #F5A623; } + +@keyframes pulse { + from { + opacity: 0; } + to { + opacity: 0.5; } } + +/*copy until here */ +.logo-up { + margin-top: -50px; + /* Adjust the value as needed */ } + +.section-title1 { + display: flex; + align-items: center; + justify-content: center; + gap: 10px; + /* Abstand zwischen Icon und Titel */ } + +.title-icon1 { + width: 10px; + /* Breite des Icons */ + height: 10px; + /* Höhe automatisch anpassen */ } + +.why-title1 { + margin: 0; + /* Entfernt zusätzliche Ränder */ } + +#wrapper-work { + overflow: hidden; + padding-top: 100px; } + #wrapper-work ul li { + width: 50%; + float: left; + position: relative; } + #wrapper-work ul li img { + width: 100%; + height: 100%; } + #wrapper-work ul li .items-text { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + width: 100%; + height: 100%; + color: #ffffff; + background: rgba(0, 0, 0, 0.6); + padding-left: 44px; + padding-top: 140px; } + #wrapper-work ul li .items-text h2 { + padding-bottom: 28px; + padding-top: 75px; + position: relative; } + #wrapper-work ul li .items-text h2:before { + content: ""; + position: absolute; + left: 0; + bottom: 0; + width: 75px; + height: 3px; + background: #ffffff; } + #wrapper-work ul li .items-text p { + padding-top: 30px; + font-size: 16px; + line-height: 27px; + font-weight: 300; + padding-right: 80px; } + +/*-- + features-work Start +--*/ +#features-work { + padding-top: 50px; + padding-bottom: 75px; } + #features-work .block ul li { + width: 19%; + text-align: center; + display: inline-block; + padding: 40px 0px; } + +/*-- + Header Start +--*/ +header { + min-height: 100px; + background: #ffffff; + padding: 20px 0; } + @media (max-width: 992px) { + header { + min-height: 90px; } } + header .navbar { + margin-bottom: 0px; + border: 0px; } + header .navbar-brand { + padding-top: 5px; } + header .navbar-default { + background: none; + border: 0px; } + header .navbar-default .navbar-nav { + padding-top: 10px; } + header .navbar-default .navbar-nav li a { + color: #333333; + padding: 10px 26px; + font-size: 15px; } + font +header .navbar-default .navbar-nav li a:hover { + color: #000000; } + +.navigation { + background: #ffffff; + padding: 20px 0; } + .navigation .navbar { + margin-bottom: 0px; + border: 0px; } + .navigation .navbar-brand { + padding-top: 5px; } + .navigation .navbar { + background: none; + border: 0px; } + .navigation .navbar .navbar-nav { + padding-top: 5px; + padding-bottom: 5px; } + .navigation .navbar .navbar-nav a { + color: #000000; + padding: 10px 15px; + font-weight: 500; + font-size: 14px; + text-transform: uppercase; } + .navigation .navbar .navbar-nav a:hover, .navigation .navbar .navbar-nav a:focus { + color: #f5a623; + background: transparent; } + .navigation .navbar .navbar-nav a.current { + color: #000000; + pointer-events: none; + cursor: default; } + .navigation .navbar .navbar-nav a.current-parent { + color: #000000; } + .navigation .navbar .navbar-nav select { + margin: 10px 15px; } + .navigation .navbar .current > .dropdown-toggle { + color: #000000; } + .navigation .navbar .dropdown-menu { + border-radius: 0; + border: none; + left: -5px; + box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); + width: 250px; + /* Setzen Sie hier die gewünschte Breite */ } + .navigation .navbar .dropdown-menu a { + text-transform: none; + font-weight: normal; + color: #7c7c7c; + padding: 10px 20px; + -webkit-transition: color 0.1s ease, padding 0.3s ease; + -moz-transition: color 0.1s ease, padding 0.3s ease; + -ms-transition: color 0.1s ease, padding 0.3s ease; + -o-transition: color 0.1s ease, padding 0.3s ease; + transition: color 0.1s ease, padding 0.3s ease; } + .navigation .navbar .dropdown-menu a:hover { + background: #185b63; + color: #ffffff; + padding-left: 25px; } + .navigation .navbar .dropdown-menu a.current { + padding-left: 25px; + color: #ffffff; + background: #185b63; } + +.nav .open > a { + background: transparent; } + +@media (max-width: 992px) { + .navbar-header { + float: none; } + .navbar-left, + .navbar-right { + float: none !important; } + .navbar-toggle { + display: block; } + .navbar-collapse { + border-top: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); } + .navbar-fixed-top { + top: 0; + border-width: 0 0 1px; } + .navbar-collapse.collapse { + display: none !important; } + .navbar-nav { + float: none !important; + margin-top: 7.5px; } + .navbar-nav > li { + float: none; } + .navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; } + .collapse { + clear: both; } + .collapse.in { + display: block !important; } } + +#select-language { + border: none; + /* Kein Rahmen */ + outline: none; + /* Kein Umriss */ + box-shadow: none; + /* Kein Schatten */ + background: transparent; + /* Hintergrund transparent, falls gewünscht */ + -webkit-appearance: none; + /* Entfernt das Standard-Dropdown-Aussehen */ + -moz-appearance: none; + /* Entfernt das Standard-Dropdown-Aussehen */ + appearance: textfield; + /* Entfernt das Standard-Dropdown-Aussehen */ + padding: 0px 2px; + /* Passen Sie das Padding an */ + height: 100%; + /* Höhe anpassen */ } + +.slider { + background-repeat: no-repeat; + background-size: cover; + background-attachment: fixed; + background-position: center center; + padding: 170px 0 200px; + position: relative; + min-height: 1000px; + /* Adjust based on your design needs */ } + @media (max-width: 1200px) { + .slider { + background-attachment: unset; + padding: 150px 0; } } + .slider .block { + color: #e0e0e0; + text-align: center; } + .slider .block h1 { + font-weight: 100; + font-size: 45px; + line-height: 1.33em; + letter-spacing: 0.2em; + padding-bottom: 15px; + text-transform: uppercase; } + @media (max-width: 768px) { + .slider .block h1 { + font-size: 35px; } } + @media (max-width: 480px) { + .slider .block h1 { + font-size: 28px; } } + @media (max-width: 400px) { + .slider .block h1 { + font-size: 26px; } } + .slider .block p { + margin-bottom: 30px; + color: #030303; + font-size: 25px; + line-height: 1.5em; + font-weight: 300; } + @media (max-width: 480px) { + .slider .block p { + font-size: 14px; } } + @media (max-width: 480px) { + .slider .block .btn { + font-size: 12px; } } +.call-to-action { + position: relative; + text-align: center; + padding: 70px 10px; + background-size: cover; + background-position: center; } + @media (max-width: 768px) { + .call-to-action { + padding-top: 20px; + padding-bottom: 20px; } } + .call-to-action::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.7); + /* Adjust the color and opacity as needed */ + z-index: 1; } + .call-to-action .container, .call-to-action .row, .call-to-action .col-md-12, .call-to-action .block { + position: relative; + z-index: 2; } + .call-to-action h2 { + color: #ffffff; + margin: 0px; + padding: 20px 0px; + text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; + /* Black contour */ } + .call-to-action p { + color: #ffffff; + font-size: 20px; + text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; + /* Black contour */ } + .call-to-action .btn-main, .call-to-action .btn-transparent, .call-to-action .btn-small { + padding: 15px 35px; + font-size: 20px; + margin-top: 10px; + margin-bottom: 10px; + text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; + /* Black contour */ } + +.overlay-dark { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.4); + z-index: 1; } + +.call-to-action .container { + position: relative; + z-index: 2; } + +.service { + text-align: center; + padding: 30px 0; } + @media (max-width: 768px) { + .service { + padding-top: 20px; + padding-bottom: 20px; } } + .service .service-item { + padding-bottom: 10px; } + .service .service-item i { + font-size: 50px; + color: #185b63; } + .service .service-item img.service-icon { + width: 100px; + height: 100px; + display: inline-block; } + .service .service-item h4 { + padding-top: 15px; + margin: 0; + margin-top: 10px; + font-weight: 500; + text-transform: uppercase; } + .service .service-item p { + padding-top: 10px; + margin: 0; } + +.dark-service .title { + color: #ffffff; } + +.dark-service .service-item { + padding-bottom: 30px; + text-align: center; } + .dark-service .service-item i { + color: #ffffff; + font-size: 40px; + margin-bottom: 10px; } + .dark-service .service-item img.service-icon { + width: 100px; + height: 100px; + display: inline-block; } + .dark-service .service-item h4 { + color: #ffffff; + padding-top: 15px; + margin: 0; + margin-top: 10px; + font-weight: 500; + text-transform: uppercase; } + .dark-service .service-item p { + padding-top: 10px; + margin: 0; } + +.service-about p { + line-height: 28px; } + +.service-arrow .block { + padding: 70px 30px; } + .service-arrow .block i { + font-size: 45px; } + .service-arrow .block p { + color: #000000; } + +.service-list .block { + padding: 30px; + margin-bottom: 20px; + background: #ffffff; } + +.center-container { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; } + +.responsive-container { + width: 100%; + max-width: 100%; + display: block; + overflow: hidden; } + +.responsive-image { + max-width: 100%; + height: auto; } + +.page-title { + position: relative; + padding: 100px 0; } + .page-title .block { + text-align: center; } + .page-title .block h1 { + color: #5f5c5c; + /* Passe die Textfarbe an, um auf dem weißen Hintergrund sichtbar zu sein */ + font-weight: 200; + letter-spacing: 0.5em; + margin-top: 20px; + margin-bottom: -60px; + text-transform: capitalize; } + .page-title .block p { + color: #000; + /* Passe die Textfarbe an, um auf dem weißen Hintergrund sichtbar zu sein */ } + +.page-title::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: #ffffff; + /* Weiß als Hintergrundfarbe */ + z-index: -1; + /* Sicherstellen, dass es hinter dem Inhalt liegt */ } + +.service-arrow .block { + display: flex; + align-items: center; + justify-content: space-between; + flex-wrap: nowrap; + /* Keine Umbrüche, damit die Inhalte nebeneinander bleiben */ } + +.service-arrow .service-image { + flex: 0 0 auto; + margin-left: 20px; } + +.service-arrow .service-image img { + max-width: 600px; + /* Maximale Breite des Bildes */ + width: 100%; + /* Bild soll sich an den Container anpassen */ + height: auto; + display: block; } + +.service-arrow .service-content { + flex: 1; } + +@media (max-width: 768px) { + .service-arrow .block { + flex-direction: column; + text-align: center; } + .service-arrow .service-image { + margin-left: 0; + margin-top: 20px; + width: 100%; + /* Bild auf volle Breite setzen bei kleinen Bildschirmen */ } } + +.service-title { + color: #273544; + /* Setze die gewünschte Farbe für die Titel der Dienste */ } + +.service-description { + color: #990505; + /* Setze die gewünschte Farbe für die Beschreibungen der Dienste */ } + +.feature { + background: url("../img/feature-bg.jpg"); + background-position: 50% 94px; + display: block; + position: relative; + background-attachment: fixed; + background-repeat: no-repeat; + background-position: center center; + background-size: cover; + padding: 100px 0; } + @media (max-width: 1200px) { + .feature { + padding-top: 20px; + padding-bottom: 20px; + background-attachment: unset; } } + .feature h2 { + margin: 0px; + padding-top: 30px; + padding-bottom: 30px; } + .feature p { + color: #8c8c8c; + margin-bottom: 20px; } + .feature .btn-view-works { + background: #6c6c6c; + color: #ffffff; + padding: 10px 20px; + margin-bottom: 30px; } + +.portfolio-work { + padding: 80px 0; } + .portfolio-work .block .portfolio-menu { + text-align: center; } + .portfolio-work .block .portfolio-menu .btn-group { + margin-bottom: 40px; } + .portfolio-work .block .portfolio-menu .btn-group label { + display: inline-block; + border: 1px solid #004753; + padding: 8px 25px; + cursor: pointer; + font-size: 15px; + color: #333333; + outline: 0; + background: #ffffff; + margin: 2px; + border-radius: 0; + -webkit-transition: all 0.3s ease; + -moz-transition: all 0.3s ease; + -ms-transition: all 0.3s ease; + -o-transition: all 0.3s ease; + transition: all 0.3s ease; } + +.portfolio-item { + position: relative; + padding: 0; } + .portfolio-item img { + width: 100%; + height: auto; } + .portfolio-item:hover .portfolio-hover { + visibility: visible; + opacity: 1; } + .portfolio-item:hover .portfolio-content { + transform: translateY(-50%); } + +.portfolio-hover { + position: absolute; + height: 100%; + width: 100%; + top: 0; + left: 0; + background: rgba(60, 55, 55, 0.5); + visibility: hidden; + opacity: 0; + transition: .3s ease; } + +.portfolio-content { + position: absolute; + left: 0; + right: 0; + top: 50%; + transform: translateY(-40%); + text-align: center; + padding: 20px; + transition: inherit; } + .portfolio-content * { + color: #ffffff; } + .portfolio-content a { + display: block; + transition: .2s ease; } + .portfolio-content a i { + font-size: 30px; } + .portfolio-content a.h3 { + margin-top: 0; } + +.portfolio-single-page .project-details h4 { + margin-bottom: 20px; + padding-bottom: 10px; + border-bottom: 2px dashed #004753; } + +.portfolio-single-page .project-details span { + color: #838383; + width: 180px; + display: inline-block; } + +.portfolio-single-page .project-details strong { + color: #313131; + font-weight: normal; } + +.portfolio-single-page .project-details ul li { + margin-bottom: 10px; } + +.testimonial { + padding: 100px 0; } + @media (max-width: 768px) { + .testimonial { + padding-top: 20px; + padding-bottom: 20px; } } + .testimonial .counter-box li { + width: 50%; + float: left; + text-align: center; + margin: 30px 0 30px; } + @media (max-width: 768px) { + .testimonial .counter-box li { + margin-top: 0px; } } + .testimonial .testimonial-carousel { + border: 1px solid #004753; + padding: 24px; } + .testimonial .testimonial-carousel i { + font-size: 35px; + margin-bottom: 20px; } + .testimonial .testimonial-carousel p { + font-family: "Open Sans Semibold", serif; + line-height: 28px; + padding-bottom: 20px; } + .testimonial .testimonial-carousel .user img { + padding-bottom: 0px; + border-radius: 500px; + width: 80px; + display: inline-block; } + .testimonial .testimonial-carousel .user p { + font-family: "Open Sans", sans-serif; + padding-bottom: 0; + margin-top: 6px; + font-size: 12px; + line-height: 20px; } + .testimonial .testimonial-carousel .user p span { + display: block; + color: #393939; + font-weight: 600; } + .testimonial .testimonial-carousel .owl-carousel .owl-pagination div { + border: 1px solid #1D1D1D; + border-radius: 500px; + display: inline-block; + height: 10px; + margin-right: 15px; + width: 10px; } + .testimonial .testimonial-carousel .owl-carousel .owl-pagination div.active { + background: #5c5c5c; + font-size: 30px; + display: inline-block; + border: 0px; } + +.counter-box i { + font-size: 35px; + margin-bottom: 15px; } + +.counter-box h4 { + font-size: 30px; + font-weight: bold; } + +.counter-box span { + color: #555555; } + +.contact-form { + padding-top: 70px; + padding-bottom: 35px; } + .contact-form .block .form-group { + padding-bottom: 15px; + margin: 0px; } + .contact-form .block .form-group .form-control { + background: #f4f4f4; + height: 60px; + border: 1px solid #EEF2F6; + box-shadow: none; + width: 100%; } + .contact-form .block .form-group-2 { + margin-bottom: 13px; } + .contact-form .block .form-group-2 textarea { + background: #f4f4f4; + height: 135px; + border: 1px solid #EEF2F6; + box-shadow: none; + width: 100%; } + .contact-form .block .form-group-h { + display: none; } + .contact-form .block button { + width: 100%; + height: 60px; + background: #474747; + border: none; + color: #ffffff; + font-size: 18px; } + +.address-block { + margin-bottom: 20px; } + .address-block li { + position: relative; + padding-left: 0px; + margin-bottom: 10px; } + .address-block li i { + position: absolute; + left: 0; + font-size: 25px; + line-height: 20px; } + .address-block li div { + display: inline-block; + vertical-align: top; } + +.social-icons { + margin-top: 40px; } + .social-icons li { + display: inline-block; + margin: 0 10px; } + .social-icons a { + display: inline-block; } + .social-icons i { + color: #2C2C2C; + margin-right: 25px; + font-size: 25px; } + +.contact-box { + padding-top: 35px; + padding-bottom: 58px; } + .contact-box .block img { + width: 100%; } + .contact-box .block h2 { + font-weight: 300; + color: #000; + font-size: 28px; + padding-bottom: 30px; } + .contact-box .block p { + color: #5c5c5c; + display: block; } + +/*================================================================= + Pricing section +==================================================================*/ +.pricing-table .pricing-item { + padding: 40px 20px; + background: #ffffff; + box-shadow: 0 8px 15px 0 rgba(5, 57, 106, 0.06); } + .pricing-table .pricing-item a.btn-main, .pricing-table .pricing-item a.btn-transparent, .pricing-table .pricing-item a.btn-small { + text-transform: uppercase; + margin-top: 20px; } + .pricing-table .pricing-item li { + font-weight: 400; + padding: 6px 0; + color: #626262; } + .pricing-table .pricing-item li i { + margin-right: 6px; + color: #185b63; } + +.pricing-table .price-title { + padding: 30px 0 20px; } + .pricing-table .price-title > h3 { + font-weight: 700; + margin: 0 0 5px; + font-size: 15px; + text-transform: uppercase; } + .pricing-table .price-title > p { + font-size: 14px; + font-weight: 400; + line-height: 18px; + margin-top: 5px; } + .pricing-table .price-title .value { + color: #185b63; + font-size: 50px; + padding: 10px 0; } + +.product-item { + margin-bottom: 30px; } + .product-item .product-thumb { + position: relative; } + .product-item .product-thumb img { + width: 100%; + height: auto; } + .product-item .product-thumb .bage { + position: absolute; + top: 12px; + right: 12px; + background: #000000; + color: #ffffff; + font-size: 12px; + padding: 4px 12px; + font-weight: 300; + display: inline-block; } + .product-item .product-thumb:before { + transition: .3s all; + opacity: 0; + background: rgba(0, 0, 0, 0.6); + content: ''; + position: absolute; + top: 0; + right: 0; + left: 0; + bottom: 0; } + .product-item .product-thumb .preview-meta { + position: absolute; + text-align: center; + bottom: 0; + left: 0; + width: 100%; + justify-content: center; + opacity: 0; + transition: 0.2s; + transform: translateY(10px); } + .product-item .product-thumb .preview-meta li { + display: inline-block; } + .product-item .product-thumb .preview-meta li a, + .product-item .product-thumb .preview-meta li span { + background: #ffffff; + padding: 10px 16px; + cursor: pointer; + display: inline-block; + font-size: 18px; } + .product-item .product-thumb .preview-meta li a:hover, + .product-item .product-thumb .preview-meta li span:hover { + background: #185b63; + color: #ffffff; } + .product-item:hover .product-thumb:before { + opacity: 1; } + .product-item:hover .preview-meta { + opacity: 1; + transform: translateY(-20px); } + .product-item .product-content { + text-align: center; } + .product-item .product-content h4 { + font-size: 14px; + font-weight: 400; + margin-top: 15px; + margin-bottom: 6px; } + .product-item .product-content h4 a { + color: #000000; } + +.product-modal { + background: rgba(255, 255, 255, 0.9); + text-align: center; + padding: 0 !important; } + .product-modal:before { + content: ''; + display: inline-block; + height: 100%; + vertical-align: middle; + margin-right: -4px; } + .product-modal.fade .modal-dialog { + transform: translate(0, 0); } + .product-modal .close { + width: 50px; + float: none; + position: absolute; + right: 20px; + z-index: 9; + top: 20px; + font-size: 30px; + outline: none; } + .product-modal .modal-dialog { + width: 900px; + display: inline-block; + text-align: left; + vertical-align: middle; } + @media (max-width: 480px) { + .product-modal .modal-dialog { + width: 100%; } } + @media (max-width: 768px) { + .product-modal .modal-dialog { + width: 100%; } } + .product-modal .modal-content { + border-radius: 0; + box-shadow: none; + border: none; } + .product-modal .modal-content .modal-body { + padding: 30px; } + .product-modal .modal-content .modal-body .modal-image img { + width: 100%; + height: auto; } + .product-modal .modal-content .modal-body .product-short-details h2 { + margin-top: 0; + font-size: 22px; + font-weight: 400; } + .product-modal .modal-content .modal-body .product-short-details h2 a { + color: #000000; } + @media (max-width: 480px) { + .product-modal .modal-content .modal-body .product-short-details h2 { + margin-top: 15px; } } + @media (max-width: 768px) { + .product-modal .modal-content .modal-body .product-short-details h2 { + margin-top: 15px; } } + .product-modal .modal-content .modal-body .product-short-details .product-price { + font-size: 30px; + margin: 20px 0; } + @media (max-width: 480px) { + .product-modal .modal-content .modal-body .product-short-details .product-price { + margin: 10px 0; } } + .product-modal .modal-content .modal-body .product-short-details .btn-main, .product-modal .modal-content .modal-body .product-short-details .btn-transparent, .product-modal .modal-content .modal-body .product-short-details .btn-small { + margin-top: 20px; } + .product-modal .modal-content .modal-body .product-short-details .btn-transparent { + color: #444444; + border-bottom: 1px solid #004753; } + +.product-shorting { + margin-bottom: 30px; } + .product-shorting span { + margin-right: 15px; } + +.product-category ul { + padding-left: 15px; } + .product-category ul li { + margin-bottom: 4px; } + .product-category ul li a { + color: #626262; } + .product-category ul li a:hover { + color: #000000; } + +.single-product { + padding: 60px 0 40px; } + .single-product .breadcrumb { + background: transparent; } + .single-product .breadcrumb li { + color: #000000; + font-weight: 200; } + .single-product .breadcrumb li a { + color: #000000; + font-weight: 200; } + .single-product .product-pagination li { + display: inline-block; + margin: 0 8px; } + .single-product .product-pagination li + li:before { + padding: 0 8px 0 0; + color: #ccc; + content: "/\00a0"; } + .single-product .product-pagination li a { + color: #000000; + font-weight: 200; } + .single-product .product-pagination li a i { + vertical-align: middle; } + +.single-product-slider .carousel .carousel-inner .carousel-caption { + text-shadow: none; + text-align: left; + top: 20%; + bottom: auto; } + .single-product-slider .carousel .carousel-inner .carousel-caption h1 { + font-size: 50px; + font-weight: 100; + color: #000000; } + .single-product-slider .carousel .carousel-inner .carousel-caption p { + width: 50%; + font-weight: 200; } + .single-product-slider .carousel .carousel-inner .carousel-caption .btn-main, .single-product-slider .carousel .carousel-inner .carousel-caption .btn-transparent, .single-product-slider .carousel .carousel-inner .carousel-caption .btn-small { + margin-top: 20px; } + +.single-product-slider .carousel .carousel-control { + bottom: auto; + background: #ffffff; + width: 6%; + padding: 10px 0; } + .single-product-slider .carousel .carousel-control i { + font-size: 40px; + text-shadow: none; + color: #555555; } + +.single-product-slider .carousel .carousel-indicators li img { + height: auto; + width: 60px; } + +.single-product-slider .carousel .carousel-control.right, +.single-product-slider .carousel .carousel-control.left { + background-image: none; + top: 40%; } + +.single-product-slider .carousel-indicators { + margin: 10px 0 0; + overflow: auto; + position: static; + text-align: left; + white-space: nowrap; + width: 100%; + overflow: hidden; } + .single-product-slider .carousel-indicators li { + background-color: transparent; + -webkit-border-radius: 0; + border-radius: 0; + display: inline-block; + height: auto; + margin: 0 !important; + width: auto; } + .single-product-slider .carousel-indicators li.active img { + opacity: 1; } + .single-product-slider .carousel-indicators li:hover img { + opacity: 0.75; } + .single-product-slider .carousel-indicators li img { + display: block; + opacity: 0.5; } + +.single-product-details .color-swatches { + display: -webkit-box; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; + align-items: center; } + .single-product-details .color-swatches span { + width: 100px; + color: #000000; + font-size: 13px; + font-weight: 600; } + .single-product-details .color-swatches a { + display: inline-block; + width: 36px; + height: 36px; + margin-right: 5px; } + .single-product-details .color-swatches li { + display: inline-block; } + .single-product-details .color-swatches .swatch-violet { + background-color: #8da1cd; } + .single-product-details .color-swatches .swatch-black { + background-color: #000000; } + .single-product-details .color-swatches .swatch-cream { + background-color: #e6e2d6; } + +.single-product-details .product-size { + margin-top: 20px; + display: -webkit-box; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; + align-items: center; } + .single-product-details .product-size span { + width: 100px; + color: #000000; + font-size: 13px; + font-weight: 600; + display: inline-block; } + .single-product-details .product-size .form-control { + display: inline-block; + width: 130px; + letter-spacing: 2px; + text-transform: uppercase; + color: #000000; + font-size: 12px; + border: 1px solid #e1e1e1; + border-radius: 0px; + box-shadow: none; } + +.single-product-details .product-category { + margin-top: 20px; } + .single-product-details .product-category > span { + width: 100px; + color: #000000; + font-size: 13px; + font-weight: 600; + display: inline-block; } + .single-product-details .product-category ul { + width: 140px; + display: inline-block; } + .single-product-details .product-category ul li { + display: inline-block; + margin: 5px; } + +.single-product-details .product-quantity { + margin-top: 20px; + display: -webkit-box; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; + align-items: center; } + .single-product-details .product-quantity > span { + width: 100px; + color: #000000; + font-size: 13px; + font-weight: 600; + display: inline-block; } + .single-product-details .product-quantity .product-quantity-slider { + width: 140px; + display: inline-block; } + .single-product-details .product-quantity .product-quantity-slider input { + height: 34px; } + .single-product-details .product-quantity .product-quantity-slider .input-group-btn:first-child > .btn, + .single-product-details .product-quantity .product-quantity-slider .p-quantity .input-group-btn:first-child > .btn-group { + margin-right: -2px; } + .single-product-details .product-quantity .product-quantity-slider button { + border-radius: 0; } + +.bootstrap-touchspin .input-group-btn-vertical { + position: relative; + white-space: nowrap; + width: 1%; + vertical-align: middle; + display: table-cell; } + +.bootstrap-touchspin .input-group-btn-vertical > .btn { + display: block; + float: none; + width: 100%; + max-width: 100%; + padding: 8px 10px; + margin-left: -1px; + position: relative; } + +.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up { + border-radius: 0; + border-top-right-radius: 4px; } + +.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down { + margin-top: -2px; + border-radius: 0; + border-bottom-right-radius: 4px; } + +.bootstrap-touchspin .input-group-btn-vertical i { + position: absolute; + top: 3px; + left: 5px; + font-size: 9px; + font-weight: normal; } + +.clients-logo-section { + padding-top: 30px; + padding-bottom: 75px; } + .clients-logo-section .clients-logo-img { + padding: 0px 50px; } + +.clients-logo img { + width: auto !important; + padding: 20px; } + +.about .block h1 { + font-size: clamp(2rem, 5vw, 3rem); + font-weight: 600; + line-height: 1.3; + margin-bottom: 1rem; + color: #046e6e; } + +.about .block h1.page-title { + font-size: clamp(2.5rem, 6vw, 4rem); + margin-top: 2rem; + text-transform: capitalize; } + +.about .block h2 { + font-size: clamp(1.25rem, 2vw, 1.5rem); + font-style: italic; + font-weight: 400; + line-height: 1.4; + color: #222; } + +.about .block h3 { + font-size: clamp(1.2rem, 1.8vw, 1.5rem); + font-weight: normal; + line-height: 1.6; + margin-bottom: 1rem; + color: inherit; } + +.about .block p { + font-style: normal; + font-size: clamp(1.3rem, 1.5vw, 1.4rem); + margin-bottom: 1.25rem; + line-height: 1.6; } + +.about .block img { + width: 100%; } + +.about .about-img { + position: relative; + overflow: hidden; } + .about .about-img img { + display: block; + width: 100%; + transition: opacity 0.5s ease-out; } + .about .about-img .hover-img { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 0; + transition: opacity 0.5s ease-out; } + .about .about-img:hover .hover-img { + opacity: 1; } + .about .about-img:hover img { + opacity: 0; } + +.instagram-feed a { + margin: 6px; + margin-right: 10px; + display: inline-block; + margin-bottom: 10px; + width: 23.5%; } + @media (max-width: 768px) { + .instagram-feed a { + width: 49%; + margin: 3px; } } + @media (max-width: 480px) { + .instagram-feed a { + width: 100%; + margin: 3px; } } + .instagram-feed a:hover img { + filter: grayscale(10); } + .instagram-feed a img { + width: 100%; } + +.dashboard-menu .active { + background: #185b63; + color: #ffffff; + border: 1px solid #185b63; } + +.dashboard-menu li { + padding: 0; + margin: 0 3px; } + .dashboard-menu li a { + padding: 10px 20px; + border: 1px solid #004753; } + @media (max-width: 768px) { + .dashboard-menu li a { + padding: 10px 15px; } } + @media (max-width: 480px) { + .dashboard-menu li a { + padding: 10px 5px; } } + @media (max-width: 400px) { + .dashboard-menu li a { + padding: 10px 5px; + font-size: 12px; } } +.dashboard-wrapper { + border: 1px solid #004753; + margin-top: 30px; + padding: 20px; } + .dashboard-wrapper h2 { + font-size: 18px; } + .dashboard-wrapper h4 { + font-size: 16px; } + .dashboard-wrapper .user-img { + width: 120px; + border-radius: 100px; } + +.dashboard-user-profile .user-img { + width: 180px; } + +.dashboard-user-profile .user-profile-list { + margin-top: 30px; + padding-left: 30px; } + .dashboard-user-profile .user-profile-list li { + margin-bottom: 8px; } + .dashboard-user-profile .user-profile-list span { + font-weight: bold; + margin-right: 5px; + width: 100px; + display: inline-block; } + +/*================================================================= + Single Blog Page +==================================================================*/ +.post.post-single { + border: none; + margin-bottom: 0px; } + .post.post-single .post-title { + margin-top: 0px; } + @media (max-width: 768px) { + .post.post-single .post-title { + margin-top: 20px; } } + .post.post-single .post-thumb { + margin-top: 30px; } + +.post-sub-heading { + border-bottom: 1px solid #004753; + padding-bottom: 20px; + letter-spacing: 2px; + text-transform: uppercase; + font-size: 16px; + margin-bottom: 20px; } + +.post-social-share { + margin-bottom: 50px; } + +.post-comments { + margin: 30px 0; } + .post-comments .media { + margin-top: 20px; } + .post-comments .media > .pull-left { + padding-right: 20px; } + .post-comments .comment-author { + margin-top: 0; + margin-bottom: 0px; + font-weight: 500; } + .post-comments .comment-author a { + color: #185b63; + font-size: 14px; + text-transform: uppercase; } + .post-comments time { + margin: 0 0 5px; + display: inline-block; + color: #7c7c7c; + font-size: 12px; } + .post-comments .comment-button { + color: #185b63; + display: inline-block; + margin-left: 5px; + font-size: 12px; } + .post-comments .comment-button i { + margin-right: 5px; + display: inline-block; } + .post-comments .comment-button:hover { + color: #185b63; } + +.post-excerpt h3 a { + color: #000000; } + +.post-excerpt p { + margin: 0 0 30px; } + +.post-excerpt blockquote.quote-post { + margin: 20px 0; } + .post-excerpt blockquote.quote-post p { + line-height: 30px; + font-size: 20px; + color: #185b63; } + +.single-blog { + background-color: #fff; + margin-bottom: 50px; + padding: 20px; } + +.blog-subtitle { + font-size: 15px; + padding-bottom: 10px; + border-bottom: 1px solid #004753; + margin-bottom: 25px; + text-transform: uppercase; } + +.next-prev { + border-bottom: 1px solid #004753; + border-top: 1px solid #004753; + margin: 20px 0; + padding: 25px 0; } + .next-prev a { + color: #000000; } + .next-prev a:hover { + color: #185b63; } + .next-prev .prev-post i { + margin-right: 10px; } + .next-prev .next-post i { + margin-left: 10px; } + +.social-profile ul li { + margin: 0 10px 0 0; + display: inline-block; } + .social-profile ul li a { + color: #565656; + display: block; + font-size: 16px; } + .social-profile ul li a i:hover { + color: #185b63; } + +.comments-section { + margin-top: 35px; } + +.author-about { + margin-top: 40px; } + +.post-author { + margin-right: 20px; } + +.post-author > img { + border: 1px solid #004753; + max-width: 120px; + padding: 5px; + width: 100%; } + +.comment-list ul { + margin-top: 20px; } + .comment-list ul li { + margin-bottom: 20px; } + +.comment-wrap { + border: 1px solid #004753; + border-radius: 1px; + margin-left: 20px; + padding: 10px; + position: relative; } + .comment-wrap .author-avatar { + margin-right: 10px; } + .comment-wrap .media .media-heading { + font-size: 14px; + margin-bottom: 8px; } + .comment-wrap .media .media-heading a { + color: #185b63; + font-size: 13px; } + .comment-wrap .media .comment-meta { + font-size: 12px; + color: #888; } + .comment-wrap .media p { + margin-top: 15px; } + +.comment-reply-form { + margin-top: 80px; } + .comment-reply-form input, + .comment-reply-form textarea { + height: 35px; + border-radius: 0; + box-shadow: none; } + .comment-reply-form input:focus, + .comment-reply-form textarea:focus { + box-shadow: none; + border: 1px solid #185b63; } + .comment-reply-form textarea, + .comment-reply-form .btn-main, + .comment-reply-form .btn-transparent, + .comment-reply-form .btn-small { + height: auto; } + +.bg-1 { + position: relative; + background-size: contain; + /* Verkleinert das Bild, sodass es komplett sichtbar ist */ + background-position: center center; + background-repeat: no-repeat; + background-attachment: fixed; } + @media (max-width: 1200px) { + .bg-1 { + background-attachment: unset; } } +.bg-1::before { + content: ""; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: inherit; + opacity: 0.2; + /* Setzt die Opazität, um das Bild blasser darzustellen */ + z-index: -1; + /* Stellt sicher, dass der Inhalt vor dem Hintergrundbild liegt */ } + +.bg-2 { + background-size: cover; + background-position: center center; + background-attachment: fixed; + background-color: #185b63; } + @media (max-width: 1200px) { + .bg-2 { + background-attachment: unset; } } +.widget { + margin-bottom: 65px; } + @media (max-width: 768px) { + .widget { + margin-bottom: 35px; } } + .widget .widget-title { + margin-top: 0px; + margin-bottom: 15px; + font-size: 16px; + color: #333333; + font-weight: 500; + border-bottom: 1px solid #004753; } + .widget.widget-latest-post .media .media-object { + width: 100px; + height: auto; } + .widget.widget-latest-post .media .media-heading a { + color: #000000; + font-size: 16px; } + .widget.widget-latest-post .media p { + font-size: 12px; + color: #7c7c7c; } + @media (max-width: 992px) { + .widget.widget-latest-post { + padding-top: 20px; } } + .widget.widget-category ul li { + padding-top: 10px; + padding-bottom: 10px; } + .widget.widget-category ul li a { + color: gray; + padding: 10px; + padding-left: 20px; + padding-right: 20px; + -webkit-transition: padding 0.3s ease, border 0.3s ease; + -moz-transition: padding 0.3s ease, border 0.3s ease; + -ms-transition: padding 0.3s ease, border 0.3s ease; + -o-transition: padding 0.3s ease, border 0.3s ease; + transition: padding 0.3s ease, border 0.3s ease; } + .widget.widget-category ul li a:before { + padding-right: 10px; } + .widget.widget-category ul li a:hover { + color: #185b63; + padding-left: 25px; } + .widget.widget-category ul li a:active { + padding-left: 24px; + border: 1px solid #185b63; + border-radius: 30px; + -webkit-transition: padding 0s ease-in-out; + -moz-transition: padding 0s ease-in-out; + -ms-transition: padding 0s ease-in-out; + -o-transition: padding 0s ease-in-out; + transition: padding 0s ease-in-out; } + .widget.widget-category ul li a.current { + color: #ffffff; + background: #185b63; + border: 1px solid #185b63; + border-radius: 30px; + pointer-events: none; + cursor: default; } + .widget.widget-tag ul li { + margin-bottom: 10px; + display: inline-block; + margin-right: 5px; } + .widget.widget-tag ul li a { + color: gray; + display: inline-block; + padding: 8px 15px; + border: 1px solid #004753; + border-radius: 30px; + font-size: 14px; + -webkit-transition: background-color 0.3s ease, border 0.3s ease, color 0.1s ease; + -moz-transition: background-color 0.3s ease, border 0.3s ease, color 0.1s ease; + -ms-transition: background-color 0.3s ease, border 0.3s ease, color 0.1s ease; + -o-transition: background-color 0.3s ease, border 0.3s ease, color 0.1s ease; + transition: background-color 0.3s ease, border 0.3s ease, color 0.1s ease; } + .widget.widget-tag ul li a:hover { + color: #185b63; + background: rgba(24, 91, 99, 0.3); + border: 1px solid rgba(24, 91, 99, 0.3); } + .widget.widget-tag ul li a:active { + color: #185b63; + border: 1px solid #185b63; + background: #ffffff; + -webkit-transition: background-color 0.1s ease; + -moz-transition: background-color 0.1s ease; + -ms-transition: background-color 0.1s ease; + -o-transition: background-color 0.1s ease; + transition: background-color 0.1s ease; } + .widget.widget-tag ul li a.current { + color: #ffffff; + background: #185b63; + border: 1px solid #185b63; + pointer-events: none; + cursor: default; } + +/*================================================================= + Latest Posts +==================================================================*/ +.blog { + background: #f2f2f2; } + +.post { + background: #ffffff; + margin-bottom: 55px; } + @media (max-width: 768px) { + .post { + margin-bottom: 20px; } } + .post .post-media.post-thumb img { + width: 100%; + height: auto; } + .post .post-media.post-media-audio iframe { + width: 100%; } + .post .post-title { + margin-top: 25px; + text-transform: uppercase; } + .post .post-title a { + color: #185b63; } + .post .post-title a:hover { + color: #185b63; } + .post .post-meta { + font-size: 13px; + margin-top: 10px; } + .post .post-meta ul li { + display: inline-block; + color: #909090; + margin-right: 20px; + font-size: 12px; + letter-spacing: .5px; } + .post .post-meta ul li a { + color: #909090; } + .post .post-meta ul li a:hover { + color: #185b63; } + .post .post-meta .post-author { + color: #000000; } + .post .post-content { + margin-top: 20px; } + .post .post-content p { + line-height: 26px; } + .post .post-content ul { + font-size: 15px; + padding: 10px 20px; + font-family: "Open Sans", sans-serif; + list-style: circle; } + .post .post-content ol { + font-size: 15px; + padding: 10px 20px; + font-family: "Open Sans", sans-serif; } + .post .post-content blockquote { + margin-top: 20px; + font-size: 18px; + border-color: #185b63; + padding: 10px 20px; + text-align: left; + color: #737373; } + .post .post-content .btn-main, .post .post-content .btn-transparent, .post .post-content .btn-small { + padding: 10px 20px; + margin: 15px 0; + font-size: 12px; } + +.post-pagination { + margin: 0px; } + @media (max-width: 992px) { + .post-pagination { + margin-bottom: 60px; } } + @media (max-width: 768px) { + .post-pagination { + margin-bottom: 25px; } } + .post-pagination > li { + margin: 0 2px; + display: inline-block; + font-size: 14px; } + .post-pagination > li > a { + color: #000000; + -webkit-transition: all 0.3s ease; + -moz-transition: all 0.3s ease; + -ms-transition: all 0.3s ease; + -o-transition: all 0.3s ease; + transition: all 0.3s ease; } + .post-pagination > li > a:hover { + color: #ffffff; + background: #185b63; + border: 1px solid #185b63; } + .post-pagination > li.active > a { + background: #185b63 !important; + border: 1px solid #185b63 !important; } + .post-pagination > li:first-child > a, + .post-pagination > li:last-child > a { + border-radius: 0; } + +.coming-soon { + background: url("../images/backgrounds/coming-soon.jpg"); + background-repeat: no-repeat; + background-size: cover; + color: #ffffff; + display: flex; + align-items: center; + height: 100vh; } + @media (max-width: 400px) { + .coming-soon { + padding: 50px 0; } } + @media (max-width: 480px) { + .coming-soon { + padding: 50px 0; } } + .coming-soon .block h1 { + line-height: 65px; + font-size: 55px; + font-weight: 600; + text-transform: uppercase; + margin-bottom: 0; } + @media (max-width: 400px) { + .coming-soon .block h1 { + font-size: 40px; + line-height: 50px; } } + @media (max-width: 480px) { + .coming-soon .block h1 { + font-size: 40px; + line-height: 50px; } } + .coming-soon .block p { + color: #ffffff; + margin-top: 10px; + font-size: 16px; } + .coming-soon .block .count-down { + margin-top: 50px; } + .coming-soon .block .count-down .syotimer-cell { + width: 25%; + padding: 15px; + display: inline-block; + background: rgba(101, 94, 122, 0.48); } + @media (max-width: 400px) { + .coming-soon .block .count-down .syotimer-cell { + width: 50%; + margin-bottom: 10px; } } + @media (max-width: 480px) { + .coming-soon .block .count-down .syotimer-cell { + width: 50%; } } + .coming-soon .block .count-down .syotimer-cell .syotimer-cell__value { + font-size: 80px; + line-height: 80px; + text-align: center; + position: relative; + font-weight: bold; } + @media (max-width: 400px) { + .coming-soon .block .count-down .syotimer-cell .syotimer-cell__value { + font-size: 50px; } } + .coming-soon .block .count-down .syotimer-cell .syotimer-cell__unit { + font-weight: normal; } + @media (max-width: 768px) { + .coming-soon .block .count-down ul li { + font-size: 50px; } } + @media (max-width: 480px) { + .coming-soon .block .count-down ul li { + font-size: 50px; } } + @media (max-width: 400px) { + .coming-soon .block .count-down ul li { + font-size: 40px; } } + .coming-soon .block .count-down ul li:before { + content: ":"; + font-size: 20pt; + opacity: 0.7; + position: absolute; + right: 0px; + top: 0px; } + .coming-soon .block .count-down ul li:last-child:before { + content: ''; } + .coming-soon .block .count-down div:after { + content: " " attr(data-interval-text); + font-size: 20px; + font-weight: normal; + text-transform: capitalize; + display: block; } + .coming-soon .block .copyright-text { + font-size: 12px; } + .coming-soon .block .copyright-text a { + color: #ffffff; + font-weight: 600; } + +.shopping .widget-title { + font-weight: 400; + border-bottom: 1px solid #004753; + padding-bottom: 15px; + margin-bottom: 15px; + text-transform: uppercase; + letter-spacing: 1px; + font-size: 16px; } + +.checkout .block { + padding: 15px; + margin-bottom: 10px; } + +.checkout-form .form-group { + position: relative; + margin-bottom: 8px; } + .checkout-form .form-group label { + position: absolute; + top: 18px; + left: 15px; + right: auto; + bottom: auto; + color: #888; + font-size: 10px; + font-weight: 400; + text-transform: uppercase; + opacity: 1 !important; + width: 85px; } + .checkout-form .form-group input { + border-radius: 0; + display: block; + padding: 6px 10px 5px 100px; + -moz-appearance: none; + -webkit-appearance: none; + height: 50px; } + +.checkout-form .checkout-country-code .form-group { + float: left; } + +.checkout-form .checkout-country-code .form-group:first-child { + width: calc(45% - 2px); + margin-right: 4px; } + +.checkout-form .checkout-country-code .form-group:last-child { + width: calc(55% - 2px); } + +.shopping.cart .product-list .table .cart-amount th { + background: #f5f5f5; + padding: 10px; + text-transform: uppercase; } + +.shopping.cart .product-list .table > tbody > tr > td { + vertical-align: middle; } + +.shopping.cart .product-list .product-info a { + margin-left: 10px; + color: #000000; + font-weight: 600; } + +.shopping.cart .product-list .product-remove { + color: #c7254e; } + +.shopping.cart .account-details { + margin-top: 30px; } + .shopping.cart .account-details legend { + font-weight: 600; + font-size: 16px; + text-transform: uppercase; } + .shopping.cart .account-details .btn-pay { + margin: 20px 0; } + +.product-checkout-details .product-card > a { + padding-right: 20px; } + +.product-checkout-details .product-card .price { + margin-top: 15px; } + +.product-checkout-details .product-card .media-object { + width: 80px; } + +.product-checkout-details .product-card h4 { + font-weight: 400; + font-size: 14px; + color: #555555; } + +.product-checkout-details .product-card .remove { + font-size: 12px; + cursor: pointer; } + +.product-checkout-details .discount-code { + border-top: 1px solid #004753; + border-bottom: 1px solid #004753; + margin: 20px 0 10px; + padding: 10px 0; } + .product-checkout-details .discount-code p { + margin: 0; } + .product-checkout-details .discount-code p a { + font-weight: 400; + color: #555555; } + +.product-checkout-details .summary-prices { + border-style: solid; + border-color: #004753; + border-width: 0px 0 1px 0; + padding-bottom: 10px; } + .product-checkout-details .summary-prices li { + padding: 5px 0; } + .product-checkout-details .summary-prices li span + span { + float: right; } + +.product-checkout-details .summary-total { + margin-top: 5px; } + .product-checkout-details .summary-total > span { + font-weight: 500; + font-size: 18px; } + .product-checkout-details .summary-total span + span { + float: right; } + +.product-checkout-details .verified-icon { + margin-top: 25px; } + .product-checkout-details .verified-icon img { + width: 100%; } + +.purchase-confirmation .purchase-confirmation-details { + padding: 20px; + border: 1px solid #004753; } + .purchase-confirmation .purchase-confirmation-details .table { + margin: 0; + color: #444444; } + .purchase-confirmation .purchase-confirmation-details .table b, + .purchase-confirmation .purchase-confirmation-details .table strong { + font-weight: 400; } + +.empty-cart .block i { + font-size: 50px; } + +.success-msg .block i { + font-size: 40px; + background: #0AA8A7; + color: #ffffff; + width: 60px; + height: 60px; + border-radius: 100px; + display: inline-block; + line-height: 60px; } + +.page-404 { + display: flex; + align-items: center; + min-height: calc(100vh - (100px + 205px)); + text-align: center; } + @media (max-width: 992px) { + .page-404 { + min-height: calc(100vh - (90px + 205px)); } } + .page-404 h1 { + font-size: 300px; + font-weight: bold; } + @media (max-width: 768px) { + .page-404 h1 { + font-size: 150px; } } + @media (max-width: 480px) { + .page-404 h1 { + font-size: 130px; } } + @media (max-width: 400px) { + .page-404 h1 { + font-size: 90px; } } + .page-404 h2 { + text-transform: uppercase; + font-size: 20px; + letter-spacing: 4px; + font-weight: bold; + margin-top: 30px; } + .page-404 .btn-main, .page-404 .btn-transparent, .page-404 .btn-small { + margin-top: 40px; + margin-bottom: 50px; } + +.page-message-sent { + display: flex; + align-items: center; + min-height: calc(100vh - (100px + 205px)); + text-align: center; } + @media (max-width: 992px) { + .page-message-sent { + min-height: calc(100vh - (90px + 205px)); } } + .page-message-sent h1 { + font-size: 50px; + font-weight: bold; } + @media (max-width: 480px) { + .page-message-sent h1 { + font-size: 40px; } } + @media (max-width: 400px) { + .page-message-sent h1 { + font-size: 30px; } } + .page-message-sent h2 { + text-transform: uppercase; + font-size: 20px; + font-weight: bold; + letter-spacing: 1px; + margin-top: 30px; } + .page-message-sent .btn-main, .page-message-sent .btn-transparent, .page-message-sent .btn-small { + margin-top: 40px; + margin-bottom: 50px; } + .page-message-sent img { + width: 50%; + max-height: 200px; + margin-top: 40px; + margin-bottom: 40px; } + +.footer { + background: #f3f3f3; + min-height: 205px; + text-align: center; + padding-top: 67px; } + .footer p { + font-size: 13px; + line-height: 25px; + color: #919191; } + .footer a { + color: #595959; } + .footer .footer-menu { + padding-bottom: 25px; } + .footer .footer-menu ul { + margin: 0px; + padding: 0px; } + .footer .footer-menu ul li { + display: inline-block; + padding: 0px 20px; } + .footer .footer-menu ul li a { + display: inline-block; + color: #494949; } + .footer .footer-menu ul li a:hover { + color: #000000; } + .footer .copyright a { + font-weight: 600; } + +/* ========== Typografie & Basis ========== */ +.hero-section { + width: 100%; + text-align: center; + padding: 0 1rem; } + +.hero-title { + font-size: clamp(1.8rem, 4vw, 4rem); + font-weight: 400; + line-height: 1.2; + color: #046e6e; + word-break: normal; + hyphens: none; } + +/* ========== Vereinheitlichte Section-Abstände ========== */ +section { + margin-bottom: 0; } + +.section { + padding-top: 90px; + padding-bottom: 90px; + margin-top: 80px; + margin-bottom: 80px; } + +/* ========== Beschreibung ========== */ +.description { + font-size: 22px; + line-height: 1.5; + padding-top: 90px; + padding-bottom: 1px; } + @media (max-width: 768px) { + .description { + font-size: 18px; + padding-top: 70px; } } + @media (max-width: 480px) { + .description { + font-size: 16px; + padding-top: 50px; } } +/* ========== Fakten ========== */ +.facts .fact-item { + padding: 15px; } + +.fact-image { + height: 250px; + width: auto; + object-fit: contain; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } + +/* ========== Hintergründe ========== */ +.custom-background { + background-size: cover; + background-position: center; + background-repeat: no-repeat; } + +.gif-background { + background-image: url("/images/BackgroundAnimation.svg"); + background-repeat: no-repeat; + position: relative; + background-size: cover; + background-position: center 50%; } + @media (max-width: 991px) { + .gif-background { + background-size: 120% auto; + background-position: center 40%; } } + @media (max-width: 575px) { + .gif-background { + background-size: 180% auto; + background-position: center 50%; } } + .gif-background::after { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(255, 255, 255, 0.8); } + @media (max-width: 575px) { + .gif-background::after { + background-color: rgba(255, 255, 255, 0.5); } } +/* ========== Service-Layout ========== */ +.service-arrow .block { + display: flex; + align-items: center; + justify-content: space-between; + padding: 20px; + border-radius: 100px; + color: #8a0909; } + +.service-content { + flex: 1; } + +.service-image { + margin: 0; } + +.service-image img { + max-width: 600px; + height: auto; + display: block; } + +/* Farbvarianten für Services */ +.bg-service1, +.bg-service3, +.bg-service5, +.bg-service7 { + background-color: #8bcfd6; } + +.bg-service2, +.bg-service4, +.bg-service6, +.bg-service8 { + background-color: #6baeb5; } + +/* Service-Gitter */ +.service-grid { + display: grid; + gap: 1.5rem; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + justify-content: center; + align-items: stretch; + margin: 0 auto; + max-width: 1200px; + padding: 0 1rem; } + +.service-item-fixed { + width: 100%; + border-radius: 10px; + overflow: hidden; + position: relative; } + +.zoom-wrap { + transition: transform 0.3s ease; + width: 100%; + height: 100%; + position: relative; } + .zoom-wrap:hover { + transform: scale(1.06); } + .zoom-wrap img { + width: 100%; + height: 100%; + object-fit: cover; + display: block; } + .zoom-wrap a { + display: block; + text-decoration: none; + color: inherit; } + .zoom-wrap .overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: rgba(0, 0, 0, 0.4); + z-index: 1; } + +.overlay-text { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + color: #fff; + font-size: 2.3em; + font-weight: bold; + text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); + z-index: 2; } + +/* ========== Zusatz-Layouts ========== */ +.spacer-lg { + height: 0px; } + +.service-item { + position: relative; + overflow: hidden; + border-radius: 8px; } + .service-item img { + width: 100%; + display: block; } + .service-item .overlay { + position: absolute; + inset: 0; + background: rgba(0, 0, 0, 0.3); } + .service-item .overlay-text { + font-size: clamp(2rem, 2vw, 3rem); } + +.info-card { + text-align: center; + padding: 1rem; } + .info-card i { + font-size: 2rem; + margin-bottom: 0.5rem; } + .info-card h3 { + font-weight: 600; + margin-top: 0.5rem; + margin-bottom: 0.25rem; + font-size: 1.2rem; + color: #046e6e; } + .info-card p { + font-size: 1rem; + color: #333; } + +/* ========== WHY AMPERION ========== */ +.why-grid { + display: grid; + gap: 2rem; + grid-template-columns: repeat(3, minmax(0, 1fr)); + align-items: stretch; } + +@media (max-width: 991.98px) { + .why-grid { + grid-template-columns: repeat(2, 1fr); } } + +@media (max-width: 575.98px) { + .why-grid { + grid-template-columns: 1fr; } } + +.service-card { + position: relative; + display: flex; + flex-direction: column; + height: 100%; + background: #fff; + padding: 1.65rem 1.5rem; + border-radius: 14px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); + transition: box-shadow .25s ease; + text-align: center; + cursor: default; + /* kein Hand-Cursor -> kein Link-Feeling */ } + +/* dezentes Hover-Feedback */ +.service-card::after { + content: ''; + position: absolute; + inset: 0; + border-radius: inherit; + background: radial-gradient(120% 100% at 50% 0%, rgba(245, 166, 35, 0.1), rgba(245, 166, 35, 0) 60%); + opacity: 0; + transition: opacity .25s ease; + pointer-events: none; } + +.service-card:hover { + box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08); } + +.service-card:hover::after { + opacity: .04; + /* sehr dezent */ } + +/* Icon */ +.service-icon { + width: 56px; + height: 56px; + object-fit: contain; + margin: 0 auto .85rem auto; + display: block; + transform-origin: center; } + +/* Titel & Text */ +.service-card-title { + font-weight: 700; + margin: .25rem 0 .5rem; } + +.service-card-description { + line-height: 1.65; + margin: 0; + color: #333; } + +/* 1) Beim Einblenden (AOS setzt .aos-animate) kurzer, sauberer Pop-in */ +@keyframes amp-pop { + 0% { + transform: scale(0.92); + opacity: 0; } + 60% { + transform: scale(1.02); + opacity: 1; } + 100% { + transform: scale(1); } } + +.service-card.aos-animate .service-icon { + animation: amp-pop 0.45s cubic-bezier(0.2, 0.9, 0.2, 1) both; } + +/* 2) Dezentes „Atmen“ (idle), startet erst nach dem Pop-in */ +@keyframes amp-breathe { + 0%, 100% { + transform: translateY(0); } + 50% { + transform: translateY(-2.5px); } } + +.service-card.aos-animate .service-icon { + /* zweite Animation hängt sich hinten dran */ + animation: amp-pop 0.45s cubic-bezier(0.2, 0.9, 0.2, 1) both, amp-breathe 7s ease-in-out 0.45s infinite; } + +/* Reduced motion respektieren */ +@media (prefers-reduced-motion: reduce) { + .service-card, .service-card::after { + transition: none !important; } + .service-card .service-icon { + animation: none !important; } } + +/* ========== Container & Layout ========== */ +.my-container { + width: 80%; + margin: 0 auto; } + +.custom-container { + max-width: 1800px; + margin: 0 auto; + padding-left: 30px; + padding-right: 30px; } + +.fixed-width { + max-width: 1200px; + margin: 0 auto; } + +.fixed-text { + max-width: 600px; + margin-right: 15px; } + +/* ========== Titel mit Hintergrund ========== */ +.page-title::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: #ffffff; + z-index: -1; } + +/* ========== Bildkomponenten & Icons ========== */ +.custom-image { + width: 100px; + max-width: 70%; + height: auto; } + +.custom-title { + color: #046e6e; } + +/* ========== Hover Links ========== */ +.hover-link { + transition: color 0.3s ease; } + .hover-link:hover { + color: #F5A623; } + +.about-cta { + color: #046e6e; + /* Türkis */ + font-weight: 700; + text-decoration: none; + border-bottom: 2px solid transparent; + transition: color 0.2s ease, border-color 0.2s ease; } + +.about-cta:hover, +.about-cta:focus { + color: #F5A623; + /* Orange */ + border-bottom-color: #F5A623; } + +/* ========== Mehrwerte ========== */ +.mehrwerte-grid { + display: grid; + gap: 0; + grid-template-columns: repeat(1, 1fr); } + @media (min-width: 768px) { + .mehrwerte-grid { + grid-template-columns: repeat(2, 1fr); } } + @media (min-width: 1200px) { + .mehrwerte-grid { + grid-template-columns: repeat(4, 1fr); } } +.mehrwerte-box { + display: flex; + flex-direction: column; + justify-content: space-between; + height: 100%; + padding: 30px; + border-radius: 8px; + transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; } + .mehrwerte-box:hover { + background-color: teal; + transform: translateY(-4px); + box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); } + .mehrwerte-box:hover h4, .mehrwerte-box:hover p { + color: #000 !important; } + .mehrwerte-box h4, .mehrwerte-box p { + color: #000 !important; + transition: color 0.3s ease; } + +/* ========== Gründerteam & Intro-Text ========== */ +.container-fluid { + max-width: 100%; + padding-left: 5vw; + padding-right: 5vw; } + +#about-intro .intro-text { + max-width: 200ch; + hyphens: auto; + -webkit-hyphens: auto; + overflow-wrap: anywhere; + margin-bottom: 1rem; } + +#about-intro .intro-text p, +#about-intro .intro-text li { + margin-bottom: 1rem; } + +/* ========== Logo Animation ========== */ +.logo-container { + width: 80%; + margin: 0 auto; + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + gap: 20px; } + +.frame1 { + flex: 0 0 40%; + display: flex; + justify-content: center; + align-items: center; } + +.frame2 { + flex: 0 0 60%; + display: flex; + justify-content: center; + align-items: center; } + +.banner-logo { + max-width: 100%; + height: auto; + opacity: 0; } + +/* Animationen */ +.frame1 .banner-logo { + animation: moveIn 1s forwards; } + +.frame2 .banner-logo { + animation: moveIn 1s 0.5s forwards; } + +@keyframes moveIn { + from { + transform: translateX(50px); + opacity: 0; } + to { + transform: translateX(0); + opacity: 1; } } + +@keyframes fadeIn { + from { + opacity: 0; } + to { + opacity: 1; } } + +.fade-in-title { + opacity: 0; + animation: fadeTitle 1.5s forwards 1s; } + +@keyframes fadeTitle { + to { + opacity: 1; } } + +@media (max-width: 768px) { + .logo-container { + flex-direction: column; + width: 90%; } + .frame1, .frame2 { + flex: 0 0 auto; + width: 100%; + margin-bottom: 20px; } } + +/* ========== Body Base (aus style.scss) ========== */ +body { + font-family: Arial, sans-serif; + text-align: center; + background-color: #ffffff; + margin: 0; + padding: 20px; } + +/* Orange-Hover für Section-Grid (zoom-Variante) */ +#leistungen-fokusthemen .service-item { + position: relative; } + +#leistungen-fokusthemen .service-item .overlay-text { + transition: color 0.25s ease; } + +#leistungen-fokusthemen .service-item:hover .overlay-text { + color: #F5A623; + /* Akzentfarbe */ } + +/* Abstand zwischen den beiden Grids */ +#leistungen-fokusthemen .grid-spacer { + height: 4rem; } + +@media (max-width: 992px) { + #leistungen-fokusthemen .grid-spacer { + height: 2.5rem; } } + +/* Bild unterhalb von "Darum AMPERION" */ +.darum-image-wrapper { + margin-top: 4rem; } + +/* ===== Über AMPERION Section ===== */ +/* Hintergrundfarbe */ +.bg-light-grey { + background-color: #f3f3f3; } + +/* Grundlayout der Zeile */ +#about .about-row { + min-height: 400px; } + +/* Bildbereich */ +#about .about-image-wrap { + width: 100%; + display: flex; + align-items: flex-end; + /* Bild unten ausrichten */ + padding-top: 30px; } + +#about .about-image { + width: 100%; + max-width: clamp(200px, 38vw, 300px); + height: auto; + object-fit: contain; + margin-left: auto; + /* rechtsbündig in Spalte */ } + +/* Textbereich Abstände */ +#about .text-left p { + margin-bottom: 1rem; } + +/* Link-Styling: Standard Türkis, Hover Orange */ +/* -> auch wenn in oder gewrappt */ +#about .text-left a, +#about .text-left b a, +#about .text-left strong a { + color: var(--amp-primary) !important; + /* Türkis */ + font-weight: 700; + text-decoration: none; + border-bottom: 2px solid transparent; + transition: color 0.2s ease, border-color 0.2s ease; } + +#about .text-left a:hover, +#about .text-left b a:hover, +#about .text-left strong a:hover, +#about .text-left a:focus { + color: var(--amp-accent) !important; + /* Orange */ + border-bottom-color: var(--amp-accent); } + +#about .text-left a:focus-visible, +#about .text-left b a:focus-visible, +#about .text-left strong a:focus-visible { + outline: 2px dashed var(--amp-accent); + outline-offset: 2px; } + +/* ===== Affiliations unter "Darum AMPERION" ===== */ +.darum-aff-row { + display: flex; + align-items: center; + justify-content: center; + gap: clamp(1rem, 3vw, 3rem); + /* etwas enger */ + flex-wrap: wrap; + margin-top: clamp(3rem, 3vw, 5rem); + /* kompakter */ } + +.aff-group { + display: flex; + align-items: center; + justify-content: center; + gap: clamp(0.5rem, 1.5vw, 1rem); } + +/* Linker Block (Ingenieurbüros etc.) */ +.aff-caption { + margin: 0 0 .5rem 0; + font-size: clamp(0.85rem, 1vw, 0.95rem); + color: #6b7280; + text-align: left; } + +.aff-logos { + display: flex; + align-items: center; + gap: clamp(0.5rem, 1vw, 0.75rem); + flex-wrap: wrap; } + +/* Beide Logos gleich groß machen */ +.aff-logos img, +.aff-right .aff-pva-logo { + height: 120px; + /* Desktop-Höhe */ + width: auto; + display: block; + object-fit: contain; } + +/* Rechter Block: Nur Logo */ +.aff-right { + display: flex; + align-items: center; + justify-content: center; + text-decoration: none; + color: inherit; } + +/* Dezente Trennlinie zwischen links/rechts (nur Desktop) */ +@media (min-width: 900px) { + .aff-right { + padding-left: clamp(0.75rem, 2vw, 2rem); + border-left: 1px solid #e5e7eb; } } + +/* Mobil: keine Trennlinie / kein Einzug */ +@media (max-width: 899.98px) { + .aff-right { + border-left: 0; + padding-left: 0; } } + +/* Mobile-Optimierung für sehr kleine Screens */ +@media (max-width: 480px) { + .aff-logos img, + .aff-right .aff-pva-logo { + height: 60px; + /* kleinere Höhe auf Handy */ + width: auto; } } + +/* Fokus-Style für Tastaturbedienung */ +.aff-right:focus-visible { + outline: 2px dashed var(--amp-accent); + outline-offset: 4px; } + +/* ======================================== + CTA SECTION - HYBRID DESIGN + ======================================== */ +.cta { + --cta-primary: #046e6e; + /* Türkis */ + --cta-accent: #F5A623; + /* Orange */ + /* Button-Preset (hier zentral Größe steuern) */ + /* ÄNDERUNG: deutlich kleinere Buttons (Höhe, Breite, Schrift) */ + --btn-py: clamp(1rem, 1.2vw, 1.2em); + /* vorher 1.8–2.5rem -> jetzt kompakter */ + --btn-px: clamp(1rem, 1.6vw, 1.2rem); + /* vorher 1.8–2.5rem -> schmaler */ + --btn-fs: clamp(1rem, 1.6vw, 1.8rem); + /* vorher 1.8–2.5rem -> p-nahe Größe */ + position: relative; + overflow: hidden; + padding: clamp(6rem, 10vw, 12rem) 0; + /* belassen; nur Buttons werden kleiner */ + background: #ffffff00; } + +/* ===== HINTERGRUND ANIMATIONEN ===== */ +.cta__bg { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; } + +/* Energie-Linien Container */ +.cta__energy-lines { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 0.6; } + +/* Horizontale Energie-Linie */ +.energy-line-h { + position: absolute; + height: 1px; + background: linear-gradient(90deg, transparent 0%, var(--cta-accent) 10%, var(--cta-accent) 90%, transparent 100%); + width: 200px; + animation: energyFlowH 8s linear infinite; } + .energy-line-h::after { + content: ''; + position: absolute; + right: 0; + top: 50%; + transform: translateY(-50%); + width: 20px; + height: 3px; + background: var(--cta-accent); + box-shadow: 0 0 10px var(--cta-accent), 0 0 20px var(--cta-accent); + border-radius: 50%; } + .energy-line-h.energy-line-h1 { + top: 20%; + animation-duration: 6s; } + .energy-line-h.energy-line-h2 { + top: 40%; + animation-duration: 7s; + animation-delay: 2s; } + .energy-line-h.energy-line-h3 { + top: 60%; + animation-duration: 8s; + animation-delay: 4s; } + .energy-line-h.energy-line-h4 { + top: 80%; + animation-duration: 6.5s; + animation-delay: 1s; } + +@keyframes energyFlowH { + 0% { + left: -200px; + opacity: 0; } + 10% { + opacity: 1; } + 90% { + opacity: 1; } + 100% { + left: 100%; + opacity: 0; } } + +/* Vertikale Energie-Linie */ +.energy-line-v { + position: absolute; + width: 1px; + background: linear-gradient(180deg, transparent 0%, var(--cta-accent) 10%, var(--cta-accent) 90%, transparent 100%); + height: 150px; + animation: energyFlowV 10s linear infinite; } + .energy-line-v::after { + content: ''; + position: absolute; + bottom: 0; + left: 50%; + transform: translateX(-50%); + width: 3px; + height: 20px; + background: var(--cta-accent); + box-shadow: 0 0 10px var(--cta-accent), 0 0 20px var(--cta-accent); + border-radius: 50%; } + .energy-line-v.energy-line-v1 { + left: 15%; + animation-duration: 7s; + animation-delay: 1s; } + .energy-line-v.energy-line-v2 { + left: 35%; + animation-duration: 9s; + animation-delay: 3s; } + .energy-line-v.energy-line-v3 { + left: 65%; + animation-duration: 8s; + animation-delay: 2s; } + .energy-line-v.energy-line-v4 { + left: 85%; + animation-duration: 7.5s; + animation-delay: 4s; } + +@keyframes energyFlowV { + 0% { + top: -150px; + opacity: 0; } + 10% { + opacity: 1; } + 90% { + opacity: 1; } + 100% { + top: 100%; + opacity: 0; } } + +/* Energie-Knoten (Kreuzungspunkte) */ +.energy-node { + position: absolute; + width: 6px; + height: 6px; + background: var(--cta-accent); + border-radius: 50%; + box-shadow: 0 0 10px var(--cta-accent); + animation: nodePulse 2s ease-in-out infinite; } + .energy-node.energy-node1 { + top: 20%; + left: 15%; + animation-delay: 0s; } + .energy-node.energy-node2 { + top: 40%; + left: 35%; + animation-delay: 0.5s; } + .energy-node.energy-node3 { + top: 60%; + left: 65%; + animation-delay: 1s; } + .energy-node.energy-node4 { + top: 80%; + left: 85%; + animation-delay: 1.5s; } + .energy-node.energy-node5 { + top: 30%; + left: 50%; + animation-delay: 0.25s; } + .energy-node.energy-node6 { + top: 70%; + left: 25%; + animation-delay: 0.75s; } + +@keyframes nodePulse { + 0%, 100% { + transform: scale(1); + opacity: 0.6; } + 50% { + transform: scale(1.5); + opacity: 1; } } + +/* ===== CONTENT STYLES ===== */ +.cta .my-container { + position: relative; + z-index: 1; + /* NEU: zentral breiter Container für diese Section + -> mehr Zeilenbreite, damit die H1 ab Desktop in 1 Zeile bleibt */ + width: 100%; + max-width: 1360px; + /* vorher kein Limit hier – jetzt groß/“breit in der Mitte“ */ + margin-inline: auto; + /* zentriert */ + padding-inline: clamp(16px, 3vw, 24px); + /* etwas Innenabstand links/rechts */ } + +.cta__wrap { + text-align: center; + /* ÄNDERUNG: mehr Inhaltsbreite, H1 bekommt mehr Platz */ + max-width: 90rem; + /* vorher 72rem */ + margin: 0 auto; + padding: 0 clamp(1rem, 3vw, 2rem); } + +/* Große Typografie */ +.cta__title { + margin: 0; + color: var(--cta-primary); + font-weight: 700; + letter-spacing: .2px; + position: center; + z-index: 2; + /* NEU: ab Desktop nicht umbrechen -> bleibt einzeilig, wenn Platz da ist */ } + @media (min-width: 1200px) { + .cta__title { + white-space: nowrap; + /* einzeilig erzwingen */ } } +.cta__lead { + margin: .9rem auto 0; + color: #0f172a; + line-height: 1.55; + /* optional etwas breiter, wenn du willst – hier schon groß genug */ + max-width: 58rem; + position: relative; + z-index: 2; } + +.cta__accent { + color: var(--cta-accent); + font-weight: 700; + display: block; + margin-top: 0.5rem; } + +/* Buttons */ +.cta__actions { + display: flex; + flex-wrap: wrap; + justify-content: center; + gap: clamp(1rem, 2.4vw, 1.6rem); + margin-top: clamp(1.4rem, 3vw, 2.2rem); + position: relative; + z-index: 2; } + +.cta__btn, +button.cta__btn { + display: inline-flex; + align-items: center; + gap: .7rem; + padding: var(--btn-py, 12px) var(--btn-px, 22px); + border-radius: 9999px; + background: #fff; + color: var(--cta-primary, #0a8f8d); + border: 1px solid rgba(0, 0, 0, 0.06); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06); + text-decoration: none; + font-weight: 700; + font-size: var(--btn-fs, 1rem); + transition: background .15s ease, color .15s ease, box-shadow .2s ease, transform .04s ease; + position: relative; + overflow: hidden; + -webkit-appearance: none; + appearance: none; + /* wichtig bei

This is the category for cookies that don't fit the '${e.toLowerCase()}' category.

`).join("")+"",save:''},window:'',modal:"",revokeBtn:'
{{policy}}
',compliance:{info:'
{{dismiss}}
',"opt-in":'
{{dismiss}}{{allow}}{{customize}}
',"opt-out":'
{{dismiss}}{{deny}}
',categories:'
{{categories}}{{save}}
'},type:"info",layouts:{basic:"{{messagelink}}{{compliance}}","basic-close":"{{messagelink}}{{compliance}}{{close}}","basic-header":"{{header}}{{message}}{{link}}{{compliance}}"},layout:"basic",position:"bottom",theme:"block",static:!1,palette:null,revokable:!1,animateRevokable:!0,showLink:!0,dismissOnScroll:!1,dismissOnTimeout:!1,dismissOnWindowClick:!1,dismissOnLinkClick:!1,dismissOnKeyPress:!1,ignoreClicksFrom:["cc-revoke","cc-btn","cc-link"],autoOpen:!0,autoAttach:!0,mobileForceFloat:!0,whitelistPage:[],blacklistPage:[],overrideHTML:null}}]); \ No newline at end of file diff --git a/static/icons/brain.svg b/static/icons/brain.svg new file mode 100644 index 0000000..fede964 --- /dev/null +++ b/static/icons/brain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/icons/briefcase-business.svg b/static/icons/briefcase-business.svg new file mode 100644 index 0000000..554920a --- /dev/null +++ b/static/icons/briefcase-business.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/icons/circuit-board.webp b/static/icons/circuit-board.webp deleted file mode 100644 index e10bc4b..0000000 Binary files a/static/icons/circuit-board.webp and /dev/null differ diff --git a/static/icons/earth.svg b/static/icons/earth.svg new file mode 100644 index 0000000..ad9050d --- /dev/null +++ b/static/icons/earth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/icons/erfahrung.webp b/static/icons/erfahrung.webp deleted file mode 100644 index 170ada4..0000000 Binary files a/static/icons/erfahrung.webp and /dev/null differ diff --git a/static/icons/file-badge.webp b/static/icons/file-badge.webp deleted file mode 100644 index 2295a98..0000000 Binary files a/static/icons/file-badge.webp and /dev/null differ diff --git a/static/icons/hard-hat.webp b/static/icons/hard-hat.webp deleted file mode 100644 index bbc4f1d..0000000 Binary files a/static/icons/hard-hat.webp and /dev/null differ diff --git a/static/icons/headset.webp b/static/icons/headset.webp deleted file mode 100644 index 8fb0c64..0000000 Binary files a/static/icons/headset.webp and /dev/null differ diff --git a/static/icons/network.webp b/static/icons/network.webp deleted file mode 100644 index a4d1dd7..0000000 Binary files a/static/icons/network.webp and /dev/null differ diff --git a/static/icons/plug-zap.webp b/static/icons/plug-zap.webp deleted file mode 100644 index a833e8c..0000000 Binary files a/static/icons/plug-zap.webp and /dev/null differ diff --git a/static/icons/stamp.svg b/static/icons/stamp.svg new file mode 100644 index 0000000..b3002ea --- /dev/null +++ b/static/icons/stamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/Imagevideo_Short.mp4 b/static/images/Imagevideo_Short.mp4 new file mode 100644 index 0000000..530d612 Binary files /dev/null and b/static/images/Imagevideo_Short.mp4 differ diff --git a/static/images/Imagevideo_Short.webm b/static/images/Imagevideo_Short.webm new file mode 100644 index 0000000..b595199 Binary files /dev/null and b/static/images/Imagevideo_Short.webm differ diff --git a/static/images/Logo Elektriker Oe Dachmarke.svg b/static/images/Logo Elektriker Oe Dachmarke.svg new file mode 100644 index 0000000..1735a20 --- /dev/null +++ b/static/images/Logo Elektriker Oe Dachmarke.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/images/Schrift_1_hu_a873982be4363622.webp b/static/images/Schrift_1_hu_a873982be4363622.webp new file mode 100644 index 0000000..7e01ca2 Binary files /dev/null and b/static/images/Schrift_1_hu_a873982be4363622.webp differ diff --git a/static/images/Schrift_1_hu_bb008dd4bf504675.webp b/static/images/Schrift_1_hu_bb008dd4bf504675.webp new file mode 100644 index 0000000..7e01ca2 Binary files /dev/null and b/static/images/Schrift_1_hu_bb008dd4bf504675.webp differ diff --git a/static/images/Schrift_2_hu_60ab9ee0fffbdd4c.webp b/static/images/Schrift_2_hu_60ab9ee0fffbdd4c.webp new file mode 100644 index 0000000..6fe51e9 Binary files /dev/null and b/static/images/Schrift_2_hu_60ab9ee0fffbdd4c.webp differ diff --git a/static/images/Schrift_2_hu_83025dc4f50b088f.webp b/static/images/Schrift_2_hu_83025dc4f50b088f.webp new file mode 100644 index 0000000..6fe51e9 Binary files /dev/null and b/static/images/Schrift_2_hu_83025dc4f50b088f.webp differ diff --git a/static/images/amperion_intro.webp b/static/images/amperion_intro.webp new file mode 100644 index 0000000..9b4051e Binary files /dev/null and b/static/images/amperion_intro.webp differ diff --git a/static/images/amperion_logo_hu_3ff5014f63ea997d.png b/static/images/amperion_logo_hu_3ff5014f63ea997d.png new file mode 100644 index 0000000..a3e1771 Binary files /dev/null and b/static/images/amperion_logo_hu_3ff5014f63ea997d.png differ diff --git a/static/images/amperion_logo_hu_51b25ec57f93fdda.png b/static/images/amperion_logo_hu_51b25ec57f93fdda.png new file mode 100644 index 0000000..f75d074 Binary files /dev/null and b/static/images/amperion_logo_hu_51b25ec57f93fdda.png differ diff --git a/static/images/amperion_logo_hu_631b72cdfdd2c569.png b/static/images/amperion_logo_hu_631b72cdfdd2c569.png new file mode 100644 index 0000000..61fcc58 Binary files /dev/null and b/static/images/amperion_logo_hu_631b72cdfdd2c569.png differ diff --git a/static/images/amperion_logo_hu_7c9d1bc02566c733.png b/static/images/amperion_logo_hu_7c9d1bc02566c733.png new file mode 100644 index 0000000..5267180 Binary files /dev/null and b/static/images/amperion_logo_hu_7c9d1bc02566c733.png differ diff --git a/static/images/amperion_logo_hu_85449a3e9f10ad32.png b/static/images/amperion_logo_hu_85449a3e9f10ad32.png new file mode 100644 index 0000000..02a8532 Binary files /dev/null and b/static/images/amperion_logo_hu_85449a3e9f10ad32.png differ diff --git a/static/images/amperion_logo_hu_b1aabdf31a032240.png b/static/images/amperion_logo_hu_b1aabdf31a032240.png new file mode 100644 index 0000000..4e49b00 Binary files /dev/null and b/static/images/amperion_logo_hu_b1aabdf31a032240.png differ diff --git a/static/images/amperion_logo_hu_cb1a1b6d4d52c438.png b/static/images/amperion_logo_hu_cb1a1b6d4d52c438.png new file mode 100644 index 0000000..a997c5b Binary files /dev/null and b/static/images/amperion_logo_hu_cb1a1b6d4d52c438.png differ diff --git a/static/images/amperion_logo_hu_d1030982e23ca560.png b/static/images/amperion_logo_hu_d1030982e23ca560.png new file mode 100644 index 0000000..d4391e2 Binary files /dev/null and b/static/images/amperion_logo_hu_d1030982e23ca560.png differ diff --git a/static/images/amperion_logo_hu_fe4fabb7499c7555.png b/static/images/amperion_logo_hu_fe4fabb7499c7555.png new file mode 100644 index 0000000..1a25f2b Binary files /dev/null and b/static/images/amperion_logo_hu_fe4fabb7499c7555.png differ diff --git a/static/images/ingenieurbuero.svg b/static/images/ingenieurbuero.svg new file mode 100644 index 0000000..7d09d1d --- /dev/null +++ b/static/images/ingenieurbuero.svg @@ -0,0 +1,524 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + I + N + G + E + N + I + E + U + R + B + Ü + R + O + S + T + A + A + T + L + I + C + H + G + E + P + R + Ü + F + T + + diff --git a/static/images/karriere/karriere_hero.webp b/static/images/karriere/karriere_hero.webp new file mode 100644 index 0000000..e7ec08f Binary files /dev/null and b/static/images/karriere/karriere_hero.webp differ diff --git a/static/images/leistungen/consulting1.webp b/static/images/leistungen/consulting1.webp new file mode 100644 index 0000000..51e2d74 Binary files /dev/null and b/static/images/leistungen/consulting1.webp differ diff --git a/static/images/leistungen/consulting2.webp b/static/images/leistungen/consulting2.webp new file mode 100644 index 0000000..bf9369f Binary files /dev/null and b/static/images/leistungen/consulting2.webp differ diff --git a/static/images/leistungen/emobilitaet1.webp b/static/images/leistungen/emobilitaet1.webp new file mode 100644 index 0000000..8d657a0 Binary files /dev/null and b/static/images/leistungen/emobilitaet1.webp differ diff --git a/static/images/leistungen/emobilitaet2.webp b/static/images/leistungen/emobilitaet2.webp new file mode 100644 index 0000000..003a91b Binary files /dev/null and b/static/images/leistungen/emobilitaet2.webp differ diff --git a/static/images/leistungen/energiespeicher1.webp b/static/images/leistungen/energiespeicher1.webp new file mode 100644 index 0000000..8b301fa Binary files /dev/null and b/static/images/leistungen/energiespeicher1.webp differ diff --git a/static/images/leistungen/energiespeicher2.webp b/static/images/leistungen/energiespeicher2.webp new file mode 100644 index 0000000..9b4051e Binary files /dev/null and b/static/images/leistungen/energiespeicher2.webp differ diff --git a/static/images/leistungen/photovoltaik1.webp b/static/images/leistungen/photovoltaik1.webp new file mode 100644 index 0000000..2844761 Binary files /dev/null and b/static/images/leistungen/photovoltaik1.webp differ diff --git a/static/images/leistungen/photovoltaik2.webp b/static/images/leistungen/photovoltaik2.webp new file mode 100644 index 0000000..7246255 Binary files /dev/null and b/static/images/leistungen/photovoltaik2.webp differ diff --git a/static/images/leistungen/planung1.webp b/static/images/leistungen/planung1.webp new file mode 100644 index 0000000..0bb9e08 Binary files /dev/null and b/static/images/leistungen/planung1.webp differ diff --git a/static/images/leistungen/planung2.webp b/static/images/leistungen/planung2.webp new file mode 100644 index 0000000..435dd30 Binary files /dev/null and b/static/images/leistungen/planung2.webp differ diff --git a/static/images/leistungen/projektmanagement1.webp b/static/images/leistungen/projektmanagement1.webp new file mode 100644 index 0000000..6699cd0 Binary files /dev/null and b/static/images/leistungen/projektmanagement1.webp differ diff --git a/static/images/leistungen/projektmanagement2.webp b/static/images/leistungen/projektmanagement2.webp new file mode 100644 index 0000000..ea9dfb1 Binary files /dev/null and b/static/images/leistungen/projektmanagement2.webp differ diff --git a/static/images/logo-fusszeile-mitglieder.svg b/static/images/logo-fusszeile-mitglieder.svg new file mode 100644 index 0000000..9c4cd91 --- /dev/null +++ b/static/images/logo-fusszeile-mitglieder.svg @@ -0,0 +1,546 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/images/logoelektrikeroedachmarke.png b/static/images/logoelektrikeroedachmarke.png new file mode 100644 index 0000000..2ac6792 Binary files /dev/null and b/static/images/logoelektrikeroedachmarke.png differ diff --git a/static/images/marker.png b/static/images/marker.png new file mode 100644 index 0000000..427e02c Binary files /dev/null and b/static/images/marker.png differ diff --git a/static/images/paper-plane.svg b/static/images/paper-plane.svg new file mode 100644 index 0000000..e4f3ae2 --- /dev/null +++ b/static/images/paper-plane.svg @@ -0,0 +1,2 @@ + + diff --git a/static/images/services/projektmanagement1.webp b/static/images/services/projektmanagement1.webp new file mode 100644 index 0000000..6699cd0 Binary files /dev/null and b/static/images/services/projektmanagement1.webp differ diff --git a/static/images/social/facebook.svg b/static/images/social/facebook.svg new file mode 100644 index 0000000..f3ceeb3 --- /dev/null +++ b/static/images/social/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/social/instagram.svg b/static/images/social/instagram.svg new file mode 100644 index 0000000..2692183 --- /dev/null +++ b/static/images/social/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/social/linkedin.svg b/static/images/social/linkedin.svg new file mode 100644 index 0000000..c74f4c2 --- /dev/null +++ b/static/images/social/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/robots.txt b/static/robots.txt new file mode 100644 index 0000000..c3226f3 --- /dev/null +++ b/static/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Disallow: + +Sitemap: https://www.amperion.at/sitemap.xml diff --git a/static/send.php b/static/send.php new file mode 100644 index 0000000..9030ca8 --- /dev/null +++ b/static/send.php @@ -0,0 +1,106 @@ +Server-Konfigurationsfehler. Bitte später erneut versuchen.

"; + exit; +} + +// Formulardaten abrufen +$name = $_POST["name"] ?? ''; +$email = $_POST["email"] ?? ''; +$company = $_POST["company"] ?? ''; +$phone = $_POST["phone"] ?? ''; +$subject = $_POST["subject"] ?? ''; +$message = $_POST["message"] ?? ''; +$legal_consented = isset($_POST["legal_consented"]) ? "Ja" : "Nein"; +$hcaptcha_response = $_POST["h-captcha-response"] ?? ''; + +// hCaptcha-Secret aus Environment laden +$hcaptcha_secret = getenv('HCAPTCHA_SECRET'); +if (!$hcaptcha_secret) { + error_log("hCaptcha Secret nicht gesetzt!"); + echo "

Server-Konfigurationsfehler. Bitte später erneut versuchen.

"; + exit; +} + +// hCaptcha-Überprüfung mit cURL +$ch = curl_init('https://hcaptcha.com/siteverify'); +curl_setopt($ch, CURLOPT_POST, true); +curl_setopt($ch, CURLOPT_POSTFIELDS, [ + 'secret' => $hcaptcha_secret, + 'response' => $hcaptcha_response, + 'remoteip' => $_SERVER['REMOTE_ADDR'] ?? null, +]); +curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); +$response = curl_exec($ch); +if ($response === false) { + error_log("cURL-Fehler bei hCaptcha: " . curl_error($ch)); + echo "

Server-Fehler. Bitte später erneut versuchen.

"; + exit; +} +curl_close($ch); +$response_data = json_decode($response, true); + +// E-Mail mit PHPMailer senden, wenn Captcha ok +if (!empty($response_data['success']) && $response_data['success'] === true) { + $mail = new PHPMailer(true); + try { + $mail->SMTPDebug = 0; // Debug-Ausgabe deaktiviert + $mail->isSMTP(); + $mail->Host = $smtp_config['smtp_host']; + $mail->Port = $smtp_config['smtp_port']; + $mail->SMTPAuth = true; + $mail->Username = $smtp_config['smtp_username']; + $mail->Password = $smtp_config['smtp_password']; + $mail->SMTPSecure = $smtp_config['smtp_encryption']; + $mail->CharSet = 'UTF-8'; + $mail->Encoding = 'base64'; + + // Absenderadresse prüfen + if (empty($smtp_config['smtp_from'])) { + throw new Exception("Absenderadresse nicht konfiguriert."); + } + $mail->setFrom($smtp_config['smtp_from'], $smtp_config['smtp_from_name']); + $mail->addAddress('office@amperion.at'); // Empfänger + if (!empty($email)) { + $mail->addReplyTo($email, $name); + } + $mail->Subject = mb_encode_mimeheader("Neue Kontaktanfrage: $subject", 'UTF-8'); + $mail->Body = " + Name: $name + E-Mail: $email + Unternehmen: $company + Telefon: $phone + Betreff: $subject + Nachricht: $message + Datenschutz zugestimmt: $legal_consented + "; + + $mail->send(); + header("Location: /danke/"); + exit(); + } catch (Exception $e) { + error_log("E-Mail-Fehler: " . $e->getMessage()); + echo "

Es gab ein Problem beim Senden der Nachricht. Bitte versuche es später erneut.

"; + } +} else { + error_log("hCaptcha-Überprüfung fehlgeschlagen: " . print_r($response_data, true)); + echo "

Bitte bestätige, dass du kein Roboter bist.

"; +} +?> diff --git a/static/tarteaucitron/README.md b/static/tarteaucitron/README.md index d4503aa..4303673 100644 --- a/static/tarteaucitron/README.md +++ b/static/tarteaucitron/README.md @@ -41,7 +41,8 @@ tarteaucitron.init({ "serviceDefaultState": "wait", /* Default state (true - wait - false) */ "showAlertSmall": false, /* Show the small banner on bottom right */ - "cookieslist": false, /* Show the cookie list */ + "cookieslist": false, /* Show the cookie list in a mini banner */ + "cookieslistEmbed": false, /* Show the cookie list on the control panel */ "showIcon": true, /* Show cookie icon to manage cookies */ // "iconSrc": "", /* Optional: URL or base64 encoded image */ @@ -59,7 +60,7 @@ tarteaucitron.init({ "removeCredit": false, /* Remove credit link */ "moreInfoLink": true, /* Show more info link */ "useExternalCss": false, /* If false, the tarteaucitron.css file will be loaded */ - "useExternalJs": false, /* If false, the tarteaucitron.services.js file will be loaded */ + "useExternalJs": false, /* If false, the tarteaucitron.services.js file and lang files will be loaded */ // "cookieDomain": ".my-multisite-domaine.fr", /* Shared cookie for subdomain website */ @@ -140,12 +141,12 @@ tarteaucitronCustomText = { 'engage-twitter': 'Follow us on Twitter!' }; ``` - + diff --git a/static/tarteaucitron/css/tarteaucitron.css b/static/tarteaucitron/css/tarteaucitron.css index 1edf403..44810ea 100644 --- a/static/tarteaucitron/css/tarteaucitron.css +++ b/static/tarteaucitron/css/tarteaucitron.css @@ -1,3 +1,5 @@ +@charset "UTF-8"; + /* min ready */ div#tarteaucitronMainLineOffset,.tarteaucitronBorder {border:0!important;} @@ -5,6 +7,45 @@ div#tarteaucitronMainLineOffset,.tarteaucitronBorder {border:0!important;} font-weight:700; } +/* A11Y titles */ +.tarteaucitron-modal-open #tac_title {display:none!important} + +#tarteaucitronRoot #tarteaucitronInfo p { + all: unset; + display: inline; +} + +.tarteaucitron-magic-block button { + border-radius: 4px; + background-color: #fbd600; + cursor: pointer; + display: inline-block; + padding: 6px 10px; + text-align: center; + text-decoration: none; + width: auto; + border: 0; + cursor: pointer; + color:#000; +} + +html #tarteaucitronRoot #tarteaucitronPrivacyUrl { + padding: 5px 10px; + font-size: 16px!important; + line-height: 1.2; +} + +@media screen and (max-width: 900px) { + #tarteaucitronRoot.tarteaucitronSize-popup button#tarteaucitronCloseAlert, + #tarteaucitronRoot.tarteaucitronSize-popup button#tarteaucitronPrivacyUrl, + #tarteaucitronRoot.tarteaucitronSize-popup button.tarteaucitronCTAButton, + #tarteaucitronRoot.tarteaucitronSize-middle button#tarteaucitronCloseAlert, + #tarteaucitronRoot.tarteaucitronSize-middle button#tarteaucitronPrivacyUrl, + #tarteaucitronRoot.tarteaucitronSize-middle button.tarteaucitronCTAButton { + width: 80%; + } +} + .tac_visually-hidden { position: absolute; width: 1px; @@ -146,7 +187,7 @@ span.tarteaucitronH3 { /** PARTNERS LIST **/ html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList { text-align: left; - background: #ffffff17; + background: #ffffff; margin: 15px 0px 10px; padding: 15px; display: block; @@ -181,7 +222,7 @@ html body #tarteaucitronRoot button#tarteaucitronSaveButton { html body #tarteaucitronRoot div#tarteaucitronSave { text-align: right; padding: 20px; - background: #333; + background: #ffffff; } /******************/ @@ -461,14 +502,14 @@ div#tarteaucitronServices { #tarteaucitronRoot .tarteaucitronH1 { font-size: 1.5em; text-align: center; - color: #fff; + color: #000000; margin: 15px 0 28px; } #tarteaucitronRoot .tarteaucitronH2 { display: inline-block; margin: 12px 0 0 15px; - color: #fff; + color: #000000; } #tarteaucitronCookiesNumberBis.tarteaucitronH2 { @@ -512,8 +553,8 @@ div#tarteaucitronServices { #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie, #tarteaucitron #tarteaucitronClosePanel { - background: #333333; - color: #fff; + background: #ffffff; + color: #000000; cursor: pointer; font-size: 12px; font-weight: 700; @@ -523,6 +564,7 @@ div#tarteaucitronServices { right: 0; text-align: center; width: 70px; + border-radius: 5px 5px 0 0; } #tarteaucitron #tarteaucitronDisclaimer { @@ -534,7 +576,7 @@ div#tarteaucitronServices { #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden, #tarteaucitron #tarteaucitronServices .tarteaucitronHidden { - background: rgba(51, 51, 51, 0.07); + /*background: rgba(51, 51, 51, 0.07);*/ } #tarteaucitron #tarteaucitronServices .tarteaucitronHidden { @@ -552,7 +594,7 @@ div#tarteaucitronServices { #tarteaucitron #tarteaucitronInfo, #tarteaucitron #tarteaucitronServices .tarteaucitronDetails, #tarteaucitronRoot .asCatToggleBtn { - color: #fff; + color: #000000; display: inline-block; font-size: 14px; font-weight: 700; @@ -560,7 +602,7 @@ div#tarteaucitronServices { padding: 5px 20px; text-align: left; width: auto; - background: #333; + background: #ffffff; } #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a, @@ -589,7 +631,7 @@ div#tarteaucitronServices { #tarteaucitron #tarteaucitronInfo, #tarteaucitron #tarteaucitronServices .tarteaucitronDetails:not(.tarteaucitronDetailsInline) { - color: #fff; + color: #000000; display: none; font-size: 12px; font-weight: 500; @@ -605,7 +647,7 @@ div#tarteaucitronServices { font-weight:500; margin:0; padding:5px 20px 20px; - background:rgba(51, 51, 51, 0.2); + background:white; color:#333; } @@ -615,11 +657,11 @@ div#tarteaucitronServices { } #tarteaucitron #tarteaucitronServices .tarteaucitronLine:hover { - background: rgba(51, 51, 51, 0.2); + background:#ffffff; } #tarteaucitron #tarteaucitronServices .tarteaucitronLine { - background: rgba(51, 51, 51, 0.1); + background: #ffffff; border-left: 5px solid transparent; margin: 0; overflow: hidden; @@ -627,25 +669,25 @@ div#tarteaucitronServices { } #tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed { - border-color: #1B870B; + border-color: #fbd600; } #tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied { - border-color: #9C1A1A; + border-color: #fbd600; } #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine { - background: #333; - border: 3px solid #333; - border-left: 9px solid #333; - border-top: 5px solid #333; + background: #ffffff; + border: 3px solid #ffffff; + border-left: 9px solid #ffffff; + border-top: 5px solid #ffffff; margin-bottom: 0; margin-top: 21px; position: relative; } #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine:hover { - background: #333; + background: #ffffff; } #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName { @@ -683,9 +725,9 @@ div#tarteaucitronServices { #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow, #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny, .tac_activate .tarteaucitronAllow { - background: #555; + background: #fbd600; border-radius: 4px; - color: #fff; + color: #000; cursor: pointer; display: inline-block; padding: 6px 10px; @@ -696,26 +738,26 @@ div#tarteaucitronServices { } #tarteaucitron #tarteaucitronServices #tarteaucitronAllAllowed.tarteaucitronIsSelected { - background-color: #1B870B; + background-color: #fbd600; opacity: 1; } #tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied.tarteaucitronIsSelected, #tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied2.tarteaucitronIsSelected { - background-color: #9C1A1A; + background-color: #fbd600; opacity: 1; } #tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed .tarteaucitronAllow, #tarteaucitron #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronLine button.tarteaucitronAllow { - background-color: #1B870B; + background-color: #fbd600; } #tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied .tarteaucitronDeny { - background-color: #9C1A1A; + background-color: #fbd600; } -#tarteaucitron #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronLine button.tarteaucitronAllow{ +/*#tarteaucitron #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronLine button.tarteaucitronAllow{ opacity: 0.4; -} +}*/ #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName .tarteaucitronListCookies { color: #333; @@ -749,7 +791,7 @@ span#tarteaucitronDisclaimerAlert { } } #tarteaucitron .tarteaucitronBorder, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden, #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine { - border-color: #333!important; + border-color: #fff!important; } /*** @@ -764,8 +806,8 @@ span#tarteaucitronDisclaimerAlert { } #tarteaucitronRoot #tarteaucitronAlertBig { - background: #333; - color: #fff; + background: #ffffff; + color: #000000; display: none; font-size: 15px !important; left: 0; @@ -784,7 +826,7 @@ span#tarteaucitronDisclaimerAlert { #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong, #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert .tarteaucitronPartnersList * { /*font: 15px verdana;*/ - color: #fff; + color: #000; } #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong { @@ -804,8 +846,8 @@ span#tarteaucitronDisclaimerAlert { #tarteaucitron #tarteaucitronPrivacyUrlDialog, #tarteaucitronRoot .tarteaucitronDeny, #tarteaucitronRoot .tarteaucitronAllow { - background: #008300; - color: #fff; + background: #fbd600; + color: #000; cursor: pointer; display: inline-block; font-size: 16px!important; @@ -816,7 +858,7 @@ span#tarteaucitronDisclaimerAlert { } #tarteaucitronRoot .tarteaucitronDeny { - background: #9C1A1A; + background: #fbd600; } #tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitron #tarteaucitronPrivacyUrl, #tarteaucitron #tarteaucitronPrivacyUrlDialog { @@ -897,19 +939,19 @@ span#tarteaucitronDisclaimerAlert { #tarteaucitronRoot .tarteaucitronCross::before { content: '\2717'; display: inline-block; - color: white; + color: #000; } #tarteaucitronRoot .tarteaucitronCheck::before { content: '\2713'; display: inline-block; - color: white; + color: #000; } #tarteaucitronRoot .tarteaucitronPlus::before { content: '\271b'; display: inline-block; - color: white; + color: black; } @@ -922,7 +964,7 @@ span#tarteaucitronDisclaimerAlert { } #tarteaucitronAlertSmall { - background: #333; + background: #fff; display: none; padding: 0; position: fixed; @@ -930,10 +972,12 @@ span#tarteaucitronDisclaimerAlert { text-align: center; width: auto; z-index: 2147483646; + box-shadow: 0 0 2px #ddd; + border-radius: 5px 0 0 0; } #tarteaucitronAlertSmall #tarteaucitronManager { - color: #fff; + color: #000; cursor: pointer; display: inline-block; font-size: 11px !important; @@ -978,7 +1022,7 @@ span#tarteaucitronDisclaimerAlert { #tarteaucitronAlertSmall #tarteaucitronCookiesNumber { background: rgba(255, 255, 255, 0.2); - color: #fff; + color: #000; cursor: pointer; display: inline-block; font-size: 30px; @@ -1014,14 +1058,15 @@ span#tarteaucitronDisclaimerAlert { } #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle { - background: #333; + background: #fff; margin-top: 21px; padding: 13px 0 9px 13px; text-align: left; + border-radius: 5px 0 0 0; } #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle strong { - color: #fff; + color: #000; font-size: 16px; } @@ -1058,6 +1103,47 @@ span#tarteaucitronDisclaimerAlert { width: 30%; } +/*** + * Embeded cookies list + */ +#tarteaucitronServicesnoTitle_cookies #tarteaucitronServices_cookies .tarteaucitronHidden { + display:block!important; +} +#tarteaucitronServicesnoTitle_cookies #tarteaucitronCookiesList .tarteaucitronH3 { + padding: 8px 20px; + margin-top: 0!important +} +#tarteaucitronServicesnoTitle_cookies .tarteaucitronCookiesListLeft, #tarteaucitronServicesnoTitle_cookies .tarteaucitronCookiesListRight { + padding:10px 14px; + width: Calc(50% - 56px); + display:inline-block; + word-break: break-all; + vertical-align: top; +} +#tarteaucitronServicesnoTitle_cookies .tarteaucitronCookiesListRight { + font-family:monospace +} +#tarteaucitronServicesnoTitle_cookies .tarteaucitron-spacer-20 { + height:0; +} +#tarteaucitronServicesnoTitle_cookies .purgeBtn { + cursor:pointer +} +html body #tarteaucitronRoot #tarteaucitron #tarteaucitronServicesnoTitle_cookies:hover #tarteaucitronCookiesList ul li { + background:transparent!important +} +@media screen and (max-width: 767px) { + #tarteaucitronServicesnoTitle_cookies #tarteaucitron-toggle-group-cookies { + text-align:left; + padding:0 0 0 3px!important + } + + html body #tarteaucitronRoot #tarteaucitronServicesnoTitle_cookies .tarteaucitronCookiesListLeft .purgeBtn { + display: inline!important; + width: auto!important + } +} + /*** * Fallback activate link */ @@ -1084,7 +1170,7 @@ span#tarteaucitronDisclaimerAlert { } .tac_activate .tac_float .tarteaucitronAllow { - background-color: #1B870B; + background-color: #fbd600; display: inline-block; } @@ -1100,7 +1186,7 @@ div.amazon_product { width:120px; } -.tarteaucitronIsAllowed .tarteaucitronDeny { +/*.tarteaucitronIsAllowed .tarteaucitronDeny { opacity: 0.4!important; }.tarteaucitronIsDenied .tarteaucitronAllow { opacity: 0.4!important; @@ -1114,7 +1200,7 @@ div.amazon_product { } #tarteaucitronServices_mandatory button.tarteaucitronAllow { opacity: 1; -} +}*/ div#tarteaucitronInfo { display: block!important; @@ -1138,6 +1224,10 @@ a.tarteaucitronSelfLink { display: block; height:30px; } +#tarteaucitronRoot a.tarteaucitronSelfLink img { + margin-left: auto; + margin-right: auto; +} .tarteaucitronMainLine .tarteaucitronH2 { font-size: 1.2em!important; @@ -1150,7 +1240,7 @@ span.tarteaucitronTitle.tarteaucitronH3 { #tarteaucitronCloseCross { position:absolute; - color: #FFF; + color: #000; font-size:1.8rem; cursor: pointer; top: 10px; @@ -1173,3 +1263,21 @@ span.tarteaucitronTitle.tarteaucitronH3 { .tarteaucitron-display-none { display: none; } + +/* custom title for popup and middle banner */ +#tarteaucitronRoot.tarteaucitronSize-middle #tarteaucitronAlertBig::before, #tarteaucitronRoot.tarteaucitronSize-popup #tarteaucitronAlertBig::before {content: var(--tacTitleBanner);} + +/* middle banner */ +div#tarteaucitronRoot.tarteaucitronSize-middle.tarteaucitronBeforeVisible:before {content: '';position: fixed;width: 100%;height: 100%;background: white;top: 0;left: 0;z-index: 999;opacity: 0.5;} +body #tarteaucitronRoot.tarteaucitronSize-middle div#tarteaucitronAlertBig {width: 60%;min-width: 285px;height: fit-content;margin: auto;top:0;left:0;bottom:0;right:0;box-shadow: 0 0 9000px #000;border-radius: 20px;padding: 35px 25px;} +.tarteaucitronSize-middle span#tarteaucitronDisclaimerAlert {padding: 0 30px;} +#tarteaucitronRoot.tarteaucitronSize-middle span#tarteaucitronDisclaimerAlert {margin: 10px 0 30px;display: block;text-align: center;font-size: 21px;} +@media screen and (max-width: 900px) {.tarteaucitronSize-middle div#tarteaucitronAlertBig button {margin: 0 auto 10px!important;display: block!important;}} +.tarteaucitronSize-middle div#tarteaucitronAlertBig:before {font-size: 35px;} + +/* popup banner */ +.tarteaucitronSize-popup div#tarteaucitronAlertBig:before {font-size: 22px;} +body #tarteaucitronRoot.tarteaucitronSize-popup div#tarteaucitronAlertBig {bottom: 0;top: auto!important;left: 8px!important;right: auto!important;transform: initial!important;border-radius: 5px 5px 0 0!important;max-width: 250px!important;width: calc(100% - 16px)!important;min-width: 0!important;padding: 25px 0;} +.tarteaucitronSize-popup span#tarteaucitronDisclaimerAlert {padding: 0 30px;font-size: 15px!important;} +#tarteaucitronRoot.tarteaucitronSize-popup span#tarteaucitronDisclaimerAlert {margin: 10px 0 30px;display: block;text-align: center;font-size: 21px;} +.tarteaucitronSize-popup div#tarteaucitronAlertBig button:not(#tarteaucitronCloseCross) {margin: 0 auto 10px!important;display: block!important;width: calc(100% - 60px);box-sizing: border-box;} \ No newline at end of file diff --git a/static/tarteaucitron/css/tarteaucitron.min.css b/static/tarteaucitron/css/tarteaucitron.min.css index d1cbb06..f919978 100644 --- a/static/tarteaucitron/css/tarteaucitron.min.css +++ b/static/tarteaucitron/css/tarteaucitron.min.css @@ -1 +1 @@ -.tarteaucitronBorder,div#tarteaucitronMainLineOffset{border:0!important}#tarteaucitron [aria-pressed=true]{font-weight:700}.tac_visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}div#tarteaucitronAlertBig:focus{outline:0}.tarteaucitron-modal-open{overflow:hidden;height:100%}#tarteaucitronContentWrapper{display:unset}div#tarteaucitronServices{border-radius:8px}button#tarteaucitronClosePanel{border-radius:5px 5px 0 0;right:15px!important}button.tarteaucitron-toggle-group{background:0 0!important;padding:10px 0 0;cursor:pointer;display:block}#tarteaucitronRoot .tarteaucitronIsDenied .tarteaucitronAllow .tarteaucitronCheck::before{content:"☐"!important}#tarteaucitronRoot #tarteaucitronServices_mandatory .tarteaucitronCheck::before,#tarteaucitronRoot .tarteaucitronIsAllowed .tarteaucitronAllow .tarteaucitronCheck::before,#tarteaucitronRoot .tarteaucitronIsDenied .tarteaucitronDeny .tarteaucitronCross::before{content:"☑"!important}#tarteaucitronRoot .tarteaucitronAllow .tarteaucitronCheck::before,#tarteaucitronRoot .tarteaucitronDeny .tarteaucitronCross::before,#tarteaucitronRoot .tarteaucitronIsAllowed .tarteaucitronDeny .tarteaucitronCross::before{content:"☐"!important}#tarteaucitronRoot .tarteaucitronCheck::before,#tarteaucitronRoot .tarteaucitronCross::before{font-size:20px}#tarteaucitronRoot #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronAsk{display:none!important}#tarteaucitronRoot button#tarteaucitronCloseAlert,#tarteaucitronRoot button#tarteaucitronPrivacyUrl,#tarteaucitronRoot button.tarteaucitronCTAButton{border:0;border-radius:4px}#tarteaucitronRoot .tarteaucitronStatusInfo,#tarteaucitronRoot button.tarteaucitronCTAButton .tarteaucitronCheck,#tarteaucitronRoot button.tarteaucitronCTAButton .tarteaucitronCross{display:none}#tarteaucitronRoot #tarteaucitron [aria-pressed=true]{font-weight:initial;text-shadow:0 0 1px}#tarteaucitronRoot #tarteaucitronServices li#tarteaucitronNoServicesTitle{padding:20px}#tarteaucitronRoot .tarteaucitronName{padding-top:5px}span.tarteaucitronReadmoreSeparator{display:inline!important}.tarteaucitronName .tacCurrentStatus,.tarteaucitronName .tarteaucitronReadmoreSeparator{color:#333!important;font-size:12px!important;text-transform:capitalize}span.tarteaucitronH3{font-weight:700!important}#tarteaucitron #tarteaucitronServices_mandatory .tarteaucitronH3{font-weight:500!important;font-size:14px;margin-top:7px}.tarteaucitronLine{border-left:0 solid transparent!important}html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList{text-align:left;background:#ffffff17;margin:15px 0 10px;padding:15px;display:block;border-radius:4px}html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList b{font-weight:700;padding-bottom:8px;display:block;font-size:16px}html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList ul{margin-left:22px}html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList ul li{list-style:circle;font-size:14px}html body #tarteaucitronRoot button#tarteaucitronSaveButton{font-size:18px!important;padding:7px 20px;border-radius:5px;cursor:pointer}html body #tarteaucitronRoot div#tarteaucitronSave{text-align:right;padding:20px;background:#333}@media screen and (max-width:767px){html body #tarteaucitronRoot #tarteaucitron div#tarteaucitronMainLineOffset .tarteaucitronName,html body #tarteaucitronRoot #tarteaucitron ul#tarteaucitronServices_mandatory .tarteaucitronDeny{display:none!important}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronAsk,html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button,html body #tarteaucitronRoot #tarteaucitron .tarteaucitronName{width:100%!important;display:block!important;margin-left:0!important;margin-right:0!important;box-sizing:border-box!important;max-width:100%!important;margin-bottom:8px!important}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder ul .tarteaucitronLine{padding:16px!important}#tarteaucitronServices_mandatory li.tarteaucitronLine .tarteaucitronName span{width:100%!important;display:inline-block}li.tarteaucitronLine .tarteaucitronName span{width:80%!important;display:inline-block}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group{width:10%!important;position:absolute;top:20px;right:20px;font-size:0;padding:10px 0}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group:before{content:"▾";font-weight:700;font-size:14px}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder .tarteaucitronIsExpanded button.tarteaucitron-toggle-group:before{content:"▴"}}@media screen and (min-width:768px){html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group:after{content:"▾";font-weight:700;font-size:14px;margin-left:15px}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder .tarteaucitronIsExpanded button.tarteaucitron-toggle-group:after{content:"▴";margin-left:15px}}#tarteaucitronRoot a,#tarteaucitronRoot abbr,#tarteaucitronRoot acronym,#tarteaucitronRoot address,#tarteaucitronRoot applet,#tarteaucitronRoot article,#tarteaucitronRoot aside,#tarteaucitronRoot audio,#tarteaucitronRoot b,#tarteaucitronRoot big,#tarteaucitronRoot blockquote,#tarteaucitronRoot canvas,#tarteaucitronRoot caption,#tarteaucitronRoot center,#tarteaucitronRoot cite,#tarteaucitronRoot code,#tarteaucitronRoot dd,#tarteaucitronRoot del,#tarteaucitronRoot details,#tarteaucitronRoot dfn,#tarteaucitronRoot div,#tarteaucitronRoot dl,#tarteaucitronRoot dt,#tarteaucitronRoot em,#tarteaucitronRoot embed,#tarteaucitronRoot fieldset,#tarteaucitronRoot figcaption,#tarteaucitronRoot figure,#tarteaucitronRoot footer,#tarteaucitronRoot form,#tarteaucitronRoot h1,#tarteaucitronRoot h2,#tarteaucitronRoot h3,#tarteaucitronRoot h4,#tarteaucitronRoot h5,#tarteaucitronRoot h6,#tarteaucitronRoot header,#tarteaucitronRoot hgroup,#tarteaucitronRoot i,#tarteaucitronRoot iframe,#tarteaucitronRoot img,#tarteaucitronRoot ins,#tarteaucitronRoot kbd,#tarteaucitronRoot label,#tarteaucitronRoot legend,#tarteaucitronRoot li,#tarteaucitronRoot mark,#tarteaucitronRoot menu,#tarteaucitronRoot nav,#tarteaucitronRoot object,#tarteaucitronRoot ol,#tarteaucitronRoot output,#tarteaucitronRoot p,#tarteaucitronRoot pre,#tarteaucitronRoot q,#tarteaucitronRoot ruby,#tarteaucitronRoot s,#tarteaucitronRoot samp,#tarteaucitronRoot section,#tarteaucitronRoot small,#tarteaucitronRoot span,#tarteaucitronRoot strike,#tarteaucitronRoot strong,#tarteaucitronRoot sub,#tarteaucitronRoot summary,#tarteaucitronRoot sup,#tarteaucitronRoot table,#tarteaucitronRoot tbody,#tarteaucitronRoot td,#tarteaucitronRoot tfoot,#tarteaucitronRoot th,#tarteaucitronRoot thead,#tarteaucitronRoot time,#tarteaucitronRoot tr,#tarteaucitronRoot tt,#tarteaucitronRoot u,#tarteaucitronRoot ul,#tarteaucitronRoot var,#tarteaucitronRoot video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;text-align:initial;text-shadow:initial}#tarteaucitronRoot *{transition:border 300ms,background 300ms,opacity 200ms,box-shadow 400ms}#tarteaucitronRoot article,#tarteaucitronRoot aside,#tarteaucitronRoot details,#tarteaucitronRoot figcaption,#tarteaucitronRoot figure,#tarteaucitronRoot footer,#tarteaucitronRoot header,#tarteaucitronRoot hgroup,#tarteaucitronRoot menu,#tarteaucitronRoot nav,#tarteaucitronRoot section{display:block}#tarteaucitronRoot ol,#tarteaucitronRoot ul{list-style:none}#tarteaucitronRoot blockquote,#tarteaucitronRoot q{quotes:none}#tarteaucitronRoot blockquote:after,#tarteaucitronRoot blockquote:before,#tarteaucitronRoot q:after,#tarteaucitronRoot q:before{content:none}#tarteaucitronRoot table{border-collapse:collapse;border-spacing:0}#tarteaucitronRoot a:focus-visible,#tarteaucitronRoot button:focus-visible{outline:3px dashed #3d86d8}div#tarteaucitronMainLineOffset{margin-top:0!important}div#tarteaucitronServices{margin-top:21px!important;box-shadow:0 40px 60px #545454}@media screen and (max-width:479px){#tarteaucitron .tarteaucitronLine .tarteaucitronName{width:90%!important}#tarteaucitron .tarteaucitronLine .tarteaucitronAsk{float:left!important;margin:10px 15px 5px}}@media screen and (max-width:767px){#tarteaucitron,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer{background:#fff;border:0!important;bottom:0!important;height:100%!important;left:0!important;margin:0!important;max-height:100%!important;max-width:100%!important;top:0!important;width:100%!important}#tarteaucitron .tarteaucitronBorder,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList{border:0!important}#tarteaucitron #tarteaucitronServices .tarteaucitronTitle{text-align:left!important}.tarteaucitronName .tarteaucitronH2{max-width:80%}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk{text-align:center!important}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk button{margin-bottom:5px}}@media screen and (min-width:768px) and (max-width:991px){#tarteaucitron{border:0!important;left:0!important;margin:0 5%!important;max-height:80%!important;width:90%!important}}#tarteaucitronRoot div#tarteaucitron{left:0;right:0;margin:auto}#tarteaucitronRoot button#tarteaucitronBack{background:#eee}#tarteaucitron .clear{clear:both}#tarteaucitron a{color:#424242;font-size:11px;font-weight:700;text-decoration:none}#tarteaucitronRoot button{background:0 0;border:0}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName button,#tarteaucitronAlertBig a,#tarteaucitronAlertBig strong,#tarteaucitronAlertSmall a,#tarteaucitronAlertSmall strong{color:#fff}#tarteaucitron strong{font-size:22px;font-weight:500}#tarteaucitron ul{padding:0}#tarteaucitron .tarteaucitronH1,#tarteaucitron .tarteaucitronH2,#tarteaucitron .tarteaucitronH3,#tarteaucitron .tarteaucitronH4,#tarteaucitron .tarteaucitronH5,#tarteaucitron .tarteaucitronH6{display:block}.cookie-list{list-style:none;padding:0;margin:0}#tarteaucitronRoot{left:0;position:absolute;right:0;top:0;width:100%}#tarteaucitronRoot *{box-sizing:initial;color:#333;font-size:14px;line-height:normal;vertical-align:initial}#tarteaucitronRoot .tarteaucitronH1{font-size:1.5em;text-align:center;color:#fff;margin:15px 0 28px}#tarteaucitronRoot .tarteaucitronH2{display:inline-block;margin:12px 0 0 15px;color:#fff}#tarteaucitronCookiesNumberBis.tarteaucitronH2{margin-left:0}#tarteaucitronBack{background:#fff;display:none;height:100%;left:0;opacity:.7;position:fixed;top:0;width:100%;z-index:2147483646}#tarteaucitron{display:none;max-height:80%;left:50%;margin:0 auto 0-430px;padding:0;position:fixed;top:6%;width:860px;z-index:2147483647}#tarteaucitron .tarteaucitronBorder{background:#fff;border:2px solid #333;border-top:0;height:auto;overflow:auto}#tarteaucitron #tarteaucitronClosePanel,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie{background:#333;color:#fff;cursor:pointer;font-size:12px;font-weight:700;text-decoration:none;padding:4px 0;position:absolute;right:0;text-align:center;width:70px}#tarteaucitron #tarteaucitronDisclaimer{color:#555;font-size:12px;margin:15px auto 0;width:80%}#tarteaucitron #tarteaucitronServices .tarteaucitronHidden,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden{background:rgba(51,51,51,.07)}#tarteaucitron #tarteaucitronServices .tarteaucitronHidden{display:none;position:relative}#tarteaucitronCookiesList .tarteaucitronH3.tarteaucitronTitle{width:100%;box-sizing:border-box}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle{color:#fff;display:inline-block;font-size:14px;font-weight:700;text-align:left;width:auto;background:#333;padding:5px 10px;margin:0}#tarteaucitron #tarteaucitronInfo,#tarteaucitron #tarteaucitronServices .tarteaucitronDetails,#tarteaucitron #tarteaucitronServices .tarteaucitronTitle button,#tarteaucitronRoot .asCatToggleBtn{color:#fff;display:inline-block;font-size:14px;font-weight:700;margin:20px 0 0;padding:5px 20px;text-align:left;width:auto;background:#333}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a,#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a{color:#fff;font-weight:500}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a:hover,#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a:hover{text-decoration:none!important}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a{font-size:22px}#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a{font-size:14px}#tarteaucitron #tarteaucitronInfo,#tarteaucitron #tarteaucitronServices .tarteaucitronDetails:not(.tarteaucitronDetailsInline){color:#fff;display:none;font-size:12px;font-weight:500;margin-top:0;max-width:270px;padding:20px;position:absolute;z-index:2147483647}#tarteaucitron #tarteaucitronServices .tarteaucitronTitle+[id^=tarteaucitronDetails]{width:calc(100% - 40px);font-weight:500;margin:0;padding:5px 20px 20px;background:rgba(51,51,51,.2);color:#333}#tarteaucitron #tarteaucitronInfo a{color:#fff;text-decoration:underline}#tarteaucitron #tarteaucitronServices .tarteaucitronLine:hover,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain:hover{background:rgba(51,51,51,.2)}#tarteaucitron #tarteaucitronServices .tarteaucitronLine{background:rgba(51,51,51,.1);border-left:5px solid transparent;margin:0;overflow:hidden;padding:15px 5px}#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed{border-color:#1b870b}#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied{border-color:#9c1a1a}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine{background:#333;border:3px solid #333;border-left:9px solid #333;border-top:5px solid #333;margin-bottom:0;margin-top:21px;position:relative}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine:hover{background:#333}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName{margin-left:15px;margin-top:2px}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronAsk{margin-top:0!important}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName{display:inline-block;float:left;margin-left:15px;text-align:left;width:50%}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName a:hover{text-decoration:underline}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk{display:inline-block;float:right;margin:7px 15px 0;text-align:right}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow,#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny,.tac_activate .tarteaucitronAllow{background:#555;border-radius:4px;color:#fff;cursor:pointer;display:inline-block;padding:6px 10px;text-align:center;text-decoration:none;width:auto;border:0}#tarteaucitron #tarteaucitronServices #tarteaucitronAllAllowed.tarteaucitronIsSelected{background-color:#1b870b;opacity:1}#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied.tarteaucitronIsSelected,#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied2.tarteaucitronIsSelected{background-color:#9c1a1a;opacity:1}#tarteaucitron #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronLine button.tarteaucitronAllow,#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed .tarteaucitronAllow{background-color:#1b870b}#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied .tarteaucitronDeny{background-color:#9c1a1a}#tarteaucitron #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronLine button.tarteaucitronAllow{opacity:.4}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName .tarteaucitronListCookies{color:#333;font-size:12px}#tarteaucitron .tarteaucitronH3{font-size:18px}#tarteaucitron #tarteaucitronMainLineOffset .tarteaucitronName{width:auto!important;margin-left:0!important;font-size:14px}.tarteaucitronAlertBigBottom span#tarteaucitronDisclaimerAlert,.tarteaucitronAlertBigTop span#tarteaucitronDisclaimerAlert{display:inline-flex}span#tarteaucitronDisclaimerAlert{padding:0 10px;display:inline-block;overflow-y:auto;max-height:50vh;line-height:normal}@media only screen and (max-width:768px){#tarteaucitronRoot span#tarteaucitronDisclaimerAlert{font-size:16px}}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine,#tarteaucitron .tarteaucitronBorder,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden{border-color:#333!important}.tarteaucitronAlertBigTop{top:0}.tarteaucitronAlertBigBottom{bottom:0}#tarteaucitronRoot #tarteaucitronAlertBig{background:#333;color:#fff;display:none;font-size:15px!important;left:0;position:fixed;box-sizing:content-box;z-index:2147483645;text-align:center;padding:10px 0;margin:auto;width:100%}#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert .tarteaucitronPartnersList *,#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong,#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog,.tac_activate .tac_float strong{color:#fff}#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong{font-weight:700}#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog{cursor:pointer}#tarteaucitronAlertBig #tarteaucitronCloseAlert{background:#008300;cursor:pointer;display:inline-block;font-size:16px!important;line-height:1.2;text-decoration:none}#tarteaucitronAlertBig #tarteaucitronPersonalize,#tarteaucitronAlertBig #tarteaucitronPersonalize2,.tarteaucitronCTAButton{background:#008300;color:#fff;cursor:pointer;display:inline-block;font-size:16px!important;line-height:1.2;padding:5px 10px;text-decoration:none;margin-left:7px}#tarteaucitron #tarteaucitronPrivacyUrl,#tarteaucitron #tarteaucitronPrivacyUrlDialog,#tarteaucitronRoot .tarteaucitronAllow,#tarteaucitronRoot .tarteaucitronDeny{background:#008300;cursor:pointer;display:inline-block;font-size:16px!important;line-height:1.2;text-decoration:none}#tarteaucitronRoot .tarteaucitronAllow,#tarteaucitronRoot .tarteaucitronDeny{color:#fff;padding:5px 10px;margin-left:7px}#tarteaucitronRoot .tarteaucitronDeny{background:#9c1a1a}#tarteaucitron #tarteaucitronPrivacyUrl,#tarteaucitron #tarteaucitronPrivacyUrlDialog,#tarteaucitronAlertBig #tarteaucitronCloseAlert{background:#fff;color:#333;margin-bottom:3px;margin-left:7px;padding:5px 10px}#tarteaucitronPercentage{background:#0a0!important;box-shadow:0 0 2px #fff,0 1px 2px #555;height:5px;left:0;position:fixed;width:0;z-index:2147483644}.tarteaucitronIconBottomRight{bottom:0;right:0}.tarteaucitronIconBottomLeft{bottom:0;left:0}.tarteaucitronIconTopRight{top:0;right:0}.tarteaucitronIconTopLeft{top:0;left:0}.tarteaucitronIconTopLeft #tarteaucitronManager{border-radius:2px 7px 7px 2px}.tarteaucitronIconTopRight #tarteaucitronManager{border-radius:7px 2px 2px 7px}.tarteaucitronIconBottomLeft #tarteaucitronManager,.tarteaucitronIconBottomRight #tarteaucitronManager{border-radius:7px 7px 2px 2px}#tarteaucitronIcon{background:0 0;position:fixed;width:auto;z-index:2147483646}#tarteaucitronIcon #tarteaucitronManager{color:transparent;cursor:pointer;display:inline-block;font-size:11px!important;padding:8px 10px;border:0}#tarteaucitronIcon #tarteaucitronManager img{width:50px;height:50px}#tarteaucitronRoot .tarteaucitronCross::before{content:"✗";display:inline-block;color:#fff}#tarteaucitronRoot .tarteaucitronCheck::before{content:"✓";display:inline-block;color:#fff}#tarteaucitronRoot .tarteaucitronPlus::before{content:"✛";display:inline-block;color:#fff}.tarteaucitronAlertSmallBottom,.tarteaucitronAlertSmallTop{bottom:0}#tarteaucitronAlertSmall{background:#333;display:none;padding:0;position:fixed;right:0;text-align:center;width:auto;z-index:2147483646}#tarteaucitronAlertSmall #tarteaucitronManager{color:#fff;cursor:pointer;display:inline-block;font-size:11px!important;padding:8px 10px}#tarteaucitronAlertSmall #tarteaucitronManager:hover{background:rgba(255,255,255,.05)}#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot{background-color:gray;border-radius:5px;display:block;height:8px;margin-bottom:1px;margin-top:5px;overflow:hidden;width:100%}#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen,#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed,#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow{display:block;float:left;height:100%;width:0%}#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen{background-color:#1b870b}#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow{background-color:#fbda26}#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed{background-color:#9c1a1a}#tarteaucitronAlertSmall #tarteaucitronCookiesNumber{background:rgba(255,255,255,.2);color:#fff;cursor:pointer;display:inline-block;font-size:30px;padding:0 10px;vertical-align:top}#tarteaucitronAlertSmall #tarteaucitronCookiesNumber:hover{background:rgba(255,255,255,.3)}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer{display:none;max-height:70%;max-width:500px;position:fixed;right:0;width:100%}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList{background:#fff;border:2px solid #333;color:#333;font-size:11px;height:auto;overflow:auto;text-align:left}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList strong{color:#333}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle{background:#333;margin-top:21px;padding:13px 0 9px 13px;text-align:left}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle strong{color:#fff;font-size:16px}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain{background:rgba(51,51,51,.1);padding:7px 5px 10px;word-wrap:break-word}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain a{color:#333;text-decoration:none}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft{display:inline-block;width:50%}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft a strong{color:#8b0000}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListRight{color:#333;display:inline-block;font-size:11px;margin-left:10%;vertical-align:top;width:30%}.tac_activate{background:#333;color:#fff;display:table;font-size:12px;height:100%;line-height:initial;margin:auto;text-align:center;width:100%}.tac_float{display:table-cell;text-align:center;vertical-align:middle}.tac_activate .tac_float .tarteaucitronAllow{background-color:#1b870b;display:inline-block}ins.adsbygoogle,ins.ferank-publicite{text-decoration:none}div.amazon_product{height:240px;width:120px}.tarteaucitronIsAllowed .tarteaucitronDeny,.tarteaucitronIsDenied .tarteaucitronAllow{opacity:.4!important}.tarteaucitronIsAllowed .tarteaucitronAllow,.tarteaucitronIsDenied .tarteaucitronDeny{opacity:1!important}.tarteaucitronLine .tarteaucitronAllow,.tarteaucitronLine .tarteaucitronDeny{opacity:.4}#tarteaucitronServices_mandatory button.tarteaucitronAllow{opacity:1}div#tarteaucitronInfo{display:block!important;position:relative!important;text-align:center!important;max-width:80%!important;padding:15px 0!important;margin:-10px auto 40px!important;font-size:1em!important;border-bottom:1px solid;border-top:1px solid;border-color:#555}a.tarteaucitronSelfLink{position:absolute;left:0;right:0;bottom:-30px;text-align:center!important;display:block;height:30px}.tarteaucitronMainLine .tarteaucitronH2{font-size:1.2em!important;margin-top:4px!important}span.tarteaucitronTitle.tarteaucitronH3{margin-top:12px!important}#tarteaucitronCloseCross{position:absolute;color:#fff;font-size:1.8rem;cursor:pointer;top:10px;right:26px}#tarteaucitronCloseCross span{color:inherit}.tarteaucitron-spacer-20{height:20px;display:block}.tarteaucitron-display-block{display:block}.tarteaucitron-display-none{display:none} \ No newline at end of file +@charset "UTF-8";.tarteaucitronBorder,div#tarteaucitronMainLineOffset{border:0!important}#tarteaucitron [aria-pressed=true]{font-weight:700}#tarteaucitronRoot #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronAsk,.tarteaucitron-modal-open #tac_title{display:none!important}#tarteaucitronRoot #tarteaucitronInfo p{all:unset;display:inline}.tarteaucitron-magic-block button{border-radius:4px;background-color:#fbd600;display:inline-block;padding:6px 10px;text-align:center;text-decoration:none;width:auto;border:0;cursor:pointer;color:#000}html #tarteaucitronRoot #tarteaucitronPrivacyUrl{padding:5px 10px;font-size:16px!important;line-height:1.2}@media screen and (max-width:900px){#tarteaucitronRoot.tarteaucitronSize-middle button#tarteaucitronCloseAlert,#tarteaucitronRoot.tarteaucitronSize-middle button#tarteaucitronPrivacyUrl,#tarteaucitronRoot.tarteaucitronSize-middle button.tarteaucitronCTAButton,#tarteaucitronRoot.tarteaucitronSize-popup button#tarteaucitronCloseAlert,#tarteaucitronRoot.tarteaucitronSize-popup button#tarteaucitronPrivacyUrl,#tarteaucitronRoot.tarteaucitronSize-popup button.tarteaucitronCTAButton{width:80%}}.tac_visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}div#tarteaucitronAlertBig:focus{outline:0}.tarteaucitron-modal-open{overflow:hidden;height:100%}#tarteaucitronContentWrapper{display:unset}div#tarteaucitronServices{border-radius:8px}button#tarteaucitronClosePanel{border-radius:5px 5px 0 0;right:15px!important}button.tarteaucitron-toggle-group{background:0 0!important;padding:10px 0 0;cursor:pointer;display:block}#tarteaucitronRoot .tarteaucitronIsDenied .tarteaucitronAllow .tarteaucitronCheck::before{content:"☐"!important}#tarteaucitronRoot #tarteaucitronServices_mandatory .tarteaucitronCheck::before,#tarteaucitronRoot .tarteaucitronIsAllowed .tarteaucitronAllow .tarteaucitronCheck::before,#tarteaucitronRoot .tarteaucitronIsDenied .tarteaucitronDeny .tarteaucitronCross::before{content:"☑"!important}#tarteaucitronRoot .tarteaucitronAllow .tarteaucitronCheck::before,#tarteaucitronRoot .tarteaucitronDeny .tarteaucitronCross::before,#tarteaucitronRoot .tarteaucitronIsAllowed .tarteaucitronDeny .tarteaucitronCross::before{content:"☐"!important}#tarteaucitronRoot .tarteaucitronCheck::before,#tarteaucitronRoot .tarteaucitronCross::before{font-size:20px}#tarteaucitronRoot button#tarteaucitronCloseAlert,#tarteaucitronRoot button#tarteaucitronPrivacyUrl,#tarteaucitronRoot button.tarteaucitronCTAButton{border:0;border-radius:4px}#tarteaucitronRoot .tarteaucitronStatusInfo,#tarteaucitronRoot button.tarteaucitronCTAButton .tarteaucitronCheck,#tarteaucitronRoot button.tarteaucitronCTAButton .tarteaucitronCross{display:none}#tarteaucitronRoot #tarteaucitron [aria-pressed=true]{font-weight:initial;text-shadow:0 0 1px}#tarteaucitronRoot #tarteaucitronServices li#tarteaucitronNoServicesTitle{padding:20px}#tarteaucitronRoot .tarteaucitronName{padding-top:5px}span.tarteaucitronReadmoreSeparator{display:inline!important}.tarteaucitronName .tacCurrentStatus,.tarteaucitronName .tarteaucitronReadmoreSeparator{color:#333!important;font-size:12px!important;text-transform:capitalize}span.tarteaucitronH3{font-weight:700!important}#tarteaucitron #tarteaucitronServices_mandatory .tarteaucitronH3{font-weight:500!important;font-size:14px;margin-top:7px}.tarteaucitronLine{border-left:0 solid transparent!important}html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList{text-align:left;background:#fff;margin:15px 0 10px;padding:15px;display:block;border-radius:4px}html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList b{font-weight:700;padding-bottom:8px;display:block;font-size:16px}html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList ul{margin-left:22px}html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList ul li{list-style:circle;font-size:14px}html body #tarteaucitronRoot button#tarteaucitronSaveButton{font-size:18px!important;padding:7px 20px;border-radius:5px;cursor:pointer}html body #tarteaucitronRoot div#tarteaucitronSave{text-align:right;padding:20px;background:#fff}@media screen and (max-width:767px){html body #tarteaucitronRoot #tarteaucitron div#tarteaucitronMainLineOffset .tarteaucitronName,html body #tarteaucitronRoot #tarteaucitron ul#tarteaucitronServices_mandatory .tarteaucitronDeny{display:none!important}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronAsk,html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button,html body #tarteaucitronRoot #tarteaucitron .tarteaucitronName{width:100%!important;display:block!important;margin-left:0!important;margin-right:0!important;box-sizing:border-box!important;max-width:100%!important;margin-bottom:8px!important}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder ul .tarteaucitronLine{padding:16px!important}#tarteaucitronServices_mandatory li.tarteaucitronLine .tarteaucitronName span{width:100%!important;display:inline-block}li.tarteaucitronLine .tarteaucitronName span{width:80%!important;display:inline-block}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group{width:10%!important;position:absolute;top:20px;right:20px;font-size:0;padding:10px 0}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group:before{content:"▾";font-weight:700;font-size:14px}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder .tarteaucitronIsExpanded button.tarteaucitron-toggle-group:before{content:"▴"}}@media screen and (min-width:768px){html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group:after{content:"▾";font-weight:700;font-size:14px;margin-left:15px}html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder .tarteaucitronIsExpanded button.tarteaucitron-toggle-group:after{content:"▴";margin-left:15px}}#tarteaucitronRoot a,#tarteaucitronRoot abbr,#tarteaucitronRoot acronym,#tarteaucitronRoot address,#tarteaucitronRoot applet,#tarteaucitronRoot article,#tarteaucitronRoot aside,#tarteaucitronRoot audio,#tarteaucitronRoot b,#tarteaucitronRoot big,#tarteaucitronRoot blockquote,#tarteaucitronRoot canvas,#tarteaucitronRoot caption,#tarteaucitronRoot center,#tarteaucitronRoot cite,#tarteaucitronRoot code,#tarteaucitronRoot dd,#tarteaucitronRoot del,#tarteaucitronRoot details,#tarteaucitronRoot dfn,#tarteaucitronRoot div,#tarteaucitronRoot dl,#tarteaucitronRoot dt,#tarteaucitronRoot em,#tarteaucitronRoot embed,#tarteaucitronRoot fieldset,#tarteaucitronRoot figcaption,#tarteaucitronRoot figure,#tarteaucitronRoot footer,#tarteaucitronRoot form,#tarteaucitronRoot h1,#tarteaucitronRoot h2,#tarteaucitronRoot h3,#tarteaucitronRoot h4,#tarteaucitronRoot h5,#tarteaucitronRoot h6,#tarteaucitronRoot header,#tarteaucitronRoot hgroup,#tarteaucitronRoot i,#tarteaucitronRoot iframe,#tarteaucitronRoot img,#tarteaucitronRoot ins,#tarteaucitronRoot kbd,#tarteaucitronRoot label,#tarteaucitronRoot legend,#tarteaucitronRoot li,#tarteaucitronRoot mark,#tarteaucitronRoot menu,#tarteaucitronRoot nav,#tarteaucitronRoot object,#tarteaucitronRoot ol,#tarteaucitronRoot output,#tarteaucitronRoot p,#tarteaucitronRoot pre,#tarteaucitronRoot q,#tarteaucitronRoot ruby,#tarteaucitronRoot s,#tarteaucitronRoot samp,#tarteaucitronRoot section,#tarteaucitronRoot small,#tarteaucitronRoot span,#tarteaucitronRoot strike,#tarteaucitronRoot strong,#tarteaucitronRoot sub,#tarteaucitronRoot summary,#tarteaucitronRoot sup,#tarteaucitronRoot table,#tarteaucitronRoot tbody,#tarteaucitronRoot td,#tarteaucitronRoot tfoot,#tarteaucitronRoot th,#tarteaucitronRoot thead,#tarteaucitronRoot time,#tarteaucitronRoot tr,#tarteaucitronRoot tt,#tarteaucitronRoot u,#tarteaucitronRoot ul,#tarteaucitronRoot var,#tarteaucitronRoot video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;text-align:initial;text-shadow:initial}#tarteaucitronRoot *{transition:border 300ms,background 300ms,opacity 200ms,box-shadow 400ms}#tarteaucitronRoot article,#tarteaucitronRoot aside,#tarteaucitronRoot details,#tarteaucitronRoot figcaption,#tarteaucitronRoot figure,#tarteaucitronRoot footer,#tarteaucitronRoot header,#tarteaucitronRoot hgroup,#tarteaucitronRoot menu,#tarteaucitronRoot nav,#tarteaucitronRoot section{display:block}#tarteaucitronRoot ol,#tarteaucitronRoot ul{list-style:none}#tarteaucitronRoot blockquote,#tarteaucitronRoot q{quotes:none}#tarteaucitronRoot blockquote:after,#tarteaucitronRoot blockquote:before,#tarteaucitronRoot q:after,#tarteaucitronRoot q:before{content:none}#tarteaucitronRoot table{border-collapse:collapse;border-spacing:0}#tarteaucitronRoot a:focus-visible,#tarteaucitronRoot button:focus-visible{outline:3px dashed #3d86d8}div#tarteaucitronMainLineOffset{margin-top:0!important}div#tarteaucitronServices{margin-top:21px!important;box-shadow:0 40px 60px #545454}@media screen and (max-width:479px){#tarteaucitron .tarteaucitronLine .tarteaucitronName{width:90%!important}#tarteaucitron .tarteaucitronLine .tarteaucitronAsk{float:left!important;margin:10px 15px 5px}}@media screen and (max-width:767px){#tarteaucitron,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer{background:#fff;border:0!important;bottom:0!important;height:100%!important;left:0!important;margin:0!important;max-height:100%!important;max-width:100%!important;top:0!important;width:100%!important}#tarteaucitron .tarteaucitronBorder,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList{border:0!important}#tarteaucitron #tarteaucitronServices .tarteaucitronTitle{text-align:left!important}.tarteaucitronName .tarteaucitronH2{max-width:80%}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk{text-align:center!important}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk button{margin-bottom:5px}}@media screen and (min-width:768px) and (max-width:991px){#tarteaucitron{border:0!important;left:0!important;margin:0 5%!important;max-height:80%!important;width:90%!important}}#tarteaucitronRoot div#tarteaucitron{left:0;right:0;margin:auto}#tarteaucitronRoot button#tarteaucitronBack{background:#eee}#tarteaucitron .clear{clear:both}#tarteaucitron a{color:#424242;font-size:11px;font-weight:700;text-decoration:none}#tarteaucitronRoot button{background:0 0;border:0}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName button,#tarteaucitronAlertBig a,#tarteaucitronAlertBig strong,#tarteaucitronAlertSmall a,#tarteaucitronAlertSmall strong,.tac_activate .tac_float strong{color:#fff}#tarteaucitron strong{font-size:22px;font-weight:500}#tarteaucitron ul{padding:0}#tarteaucitron .tarteaucitronH1,#tarteaucitron .tarteaucitronH2,#tarteaucitron .tarteaucitronH3,#tarteaucitron .tarteaucitronH4,#tarteaucitron .tarteaucitronH5,#tarteaucitron .tarteaucitronH6{display:block}.cookie-list{list-style:none;padding:0;margin:0}#tarteaucitronRoot{left:0;position:absolute;right:0;top:0;width:100%}#tarteaucitronRoot *{box-sizing:initial;color:#333;font-size:14px;line-height:normal;vertical-align:initial}#tarteaucitronRoot .tarteaucitronH1{font-size:1.5em;text-align:center;color:#000;margin:15px 0 28px}#tarteaucitronRoot .tarteaucitronH2{display:inline-block;margin:12px 0 0 15px;color:#000}#tarteaucitronCookiesNumberBis.tarteaucitronH2{margin-left:0}#tarteaucitronBack{background:#fff;display:none;height:100%;left:0;opacity:.7;position:fixed;top:0;width:100%;z-index:2147483646}#tarteaucitron{display:none;max-height:80%;left:50%;margin:0 auto 0-430px;padding:0;position:fixed;top:6%;width:860px;z-index:2147483647}#tarteaucitron .tarteaucitronBorder{background:#fff;border:2px solid #333;border-top:0;height:auto;overflow:auto}#tarteaucitron #tarteaucitronClosePanel,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie{background:#fff;color:#000;cursor:pointer;font-size:12px;font-weight:700;text-decoration:none;padding:4px 0;position:absolute;right:0;text-align:center;width:70px;border-radius:5px 5px 0 0}#tarteaucitron #tarteaucitronDisclaimer{color:#555;font-size:12px;margin:15px auto 0;width:80%}#tarteaucitron #tarteaucitronServices .tarteaucitronHidden{display:none;position:relative}#tarteaucitronCookiesList .tarteaucitronH3.tarteaucitronTitle{width:100%;box-sizing:border-box}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle{color:#000;display:inline-block;font-size:14px;font-weight:700;text-align:left;width:auto;background:#fff;padding:5px 10px;margin:0}#tarteaucitron #tarteaucitronInfo,#tarteaucitron #tarteaucitronServices .tarteaucitronDetails,#tarteaucitron #tarteaucitronServices .tarteaucitronTitle button,#tarteaucitronRoot .asCatToggleBtn{color:#000;display:inline-block;font-size:14px;font-weight:700;margin:20px 0 0;padding:5px 20px;text-align:left;width:auto;background:#fff}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a,#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a{color:#fff;font-weight:500}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a:hover,#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a:hover{text-decoration:none!important}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a{font-size:22px}#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a{font-size:14px}#tarteaucitron #tarteaucitronInfo,#tarteaucitron #tarteaucitronServices .tarteaucitronDetails:not(.tarteaucitronDetailsInline){color:#000;display:none;font-size:12px;font-weight:500;margin-top:0;max-width:270px;padding:20px;position:absolute;z-index:2147483647}#tarteaucitron #tarteaucitronServices .tarteaucitronTitle+[id^=tarteaucitronDetails]{width:calc(100% - 40px);font-weight:500;margin:0;padding:5px 20px 20px;background:#fff;color:#333}#tarteaucitron #tarteaucitronInfo a{color:#fff;text-decoration:underline}#tarteaucitron #tarteaucitronServices .tarteaucitronLine:hover{background:#fff}#tarteaucitron #tarteaucitronServices .tarteaucitronLine{background:#fff;border-left:5px solid transparent;margin:0;overflow:hidden;padding:15px 5px}#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed,#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied{border-color:#fbd600}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine{background:#fff;border:3px solid #fff;border-left:9px solid #fff;border-top:5px solid #fff;margin-bottom:0;margin-top:21px;position:relative}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine:hover{background:#fff}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName{margin-left:15px;margin-top:2px}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronAsk{margin-top:0!important}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName{display:inline-block;float:left;margin-left:15px;text-align:left;width:50%}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName a:hover{text-decoration:underline}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk{display:inline-block;float:right;margin:7px 15px 0;text-align:right}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow,#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny,.tac_activate .tarteaucitronAllow{background:#fbd600;border-radius:4px;color:#000;cursor:pointer;display:inline-block;padding:6px 10px;text-align:center;text-decoration:none;width:auto;border:0}#tarteaucitron #tarteaucitronServices #tarteaucitronAllAllowed.tarteaucitronIsSelected,#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied.tarteaucitronIsSelected,#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied2.tarteaucitronIsSelected{background-color:#fbd600;opacity:1}#tarteaucitron #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronLine button.tarteaucitronAllow,#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed .tarteaucitronAllow,#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied .tarteaucitronDeny{background-color:#fbd600}#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName .tarteaucitronListCookies{color:#333;font-size:12px}#tarteaucitron .tarteaucitronH3{font-size:18px}#tarteaucitron #tarteaucitronMainLineOffset .tarteaucitronName{width:auto!important;margin-left:0!important;font-size:14px}.tarteaucitronAlertBigBottom span#tarteaucitronDisclaimerAlert,.tarteaucitronAlertBigTop span#tarteaucitronDisclaimerAlert{display:inline-flex}span#tarteaucitronDisclaimerAlert{padding:0 10px;display:inline-block;overflow-y:auto;max-height:50vh;line-height:normal}@media only screen and (max-width:768px){#tarteaucitronRoot span#tarteaucitronDisclaimerAlert{font-size:16px}}#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine,#tarteaucitron .tarteaucitronBorder,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain,#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden{border-color:#fff!important}.tarteaucitronAlertBigTop{top:0}.tarteaucitronAlertBigBottom{bottom:0}#tarteaucitronRoot #tarteaucitronAlertBig{background:#fff;color:#000;display:none;font-size:15px!important;left:0;position:fixed;box-sizing:content-box;z-index:2147483645;text-align:center;padding:10px 0;margin:auto;width:100%}#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert .tarteaucitronPartnersList *,#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong,#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog{color:#000}#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong{font-weight:700}#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog{cursor:pointer}#tarteaucitronAlertBig #tarteaucitronCloseAlert{background:#fbd600;cursor:pointer;display:inline-block;font-size:16px!important;line-height:1.2;text-decoration:none}#tarteaucitronAlertBig #tarteaucitronPersonalize,#tarteaucitronAlertBig #tarteaucitronPersonalize2,.tarteaucitronCTAButton{background:#fbd600;color:#000;cursor:pointer;display:inline-block;font-size:16px!important;line-height:1.2;padding:5px 10px;text-decoration:none;margin-left:7px}#tarteaucitron #tarteaucitronPrivacyUrl,#tarteaucitron #tarteaucitronPrivacyUrlDialog{background:#fbd600;cursor:pointer;display:inline-block;font-size:16px!important;line-height:1.2;text-decoration:none}#tarteaucitronRoot .tarteaucitronAllow,#tarteaucitronRoot .tarteaucitronDeny{color:#000;cursor:pointer;display:inline-block;font-size:16px!important;line-height:1.2;padding:5px 10px;text-decoration:none;margin-left:7px}#tarteaucitronRoot .tarteaucitronAllow{background:#fbd600}#tarteaucitronRoot .tarteaucitronDeny{background:#fbd600}#tarteaucitron #tarteaucitronPrivacyUrl,#tarteaucitron #tarteaucitronPrivacyUrlDialog,#tarteaucitronAlertBig #tarteaucitronCloseAlert{background:#fff;color:#333;margin-bottom:3px;margin-left:7px;padding:5px 10px}#tarteaucitronPercentage{background:#0a0!important;box-shadow:0 0 2px #fff,0 1px 2px #555;height:5px;left:0;position:fixed;width:0;z-index:2147483644}.tarteaucitronIconBottomRight{bottom:0;right:0}.tarteaucitronIconBottomLeft{bottom:0;left:0}.tarteaucitronIconTopRight{top:0;right:0}.tarteaucitronIconTopLeft{top:0;left:0}.tarteaucitronIconTopLeft #tarteaucitronManager{border-radius:2px 7px 7px 2px}.tarteaucitronIconTopRight #tarteaucitronManager{border-radius:7px 2px 2px 7px}.tarteaucitronIconBottomLeft #tarteaucitronManager,.tarteaucitronIconBottomRight #tarteaucitronManager{border-radius:7px 7px 2px 2px}#tarteaucitronIcon{background:0 0;position:fixed;width:auto;z-index:2147483646}#tarteaucitronIcon #tarteaucitronManager{color:transparent;cursor:pointer;display:inline-block;font-size:11px!important;padding:8px 10px;border:0}#tarteaucitronIcon #tarteaucitronManager img{width:50px;height:50px}#tarteaucitronRoot .tarteaucitronCross::before{content:"✗";display:inline-block;color:#000}#tarteaucitronRoot .tarteaucitronCheck::before{content:"✓";display:inline-block;color:#000}#tarteaucitronRoot .tarteaucitronPlus::before{content:"✛";display:inline-block;color:#000}.tarteaucitronAlertSmallBottom,.tarteaucitronAlertSmallTop{bottom:0}#tarteaucitronAlertSmall{background:#fff;display:none;padding:0;position:fixed;right:0;text-align:center;width:auto;z-index:2147483646;box-shadow:0 0 2px #ddd;border-radius:5px 0 0 0}#tarteaucitronAlertSmall #tarteaucitronManager{color:#000;cursor:pointer;display:inline-block;font-size:11px!important;padding:8px 10px}#tarteaucitronAlertSmall #tarteaucitronManager:hover{background:rgba(255,255,255,.05)}#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot{background-color:gray;border-radius:5px;display:block;height:8px;margin-bottom:1px;margin-top:5px;overflow:hidden;width:100%}#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen,#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed,#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow{display:block;float:left;height:100%;width:0%}#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen{background-color:#1b870b}#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow{background-color:#fbda26}#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed{background-color:#9c1a1a}#tarteaucitronAlertSmall #tarteaucitronCookiesNumber{background:rgba(255,255,255,.2);color:#000;cursor:pointer;display:inline-block;font-size:30px;padding:0 10px;vertical-align:top}#tarteaucitronAlertSmall #tarteaucitronCookiesNumber:hover{background:rgba(255,255,255,.3)}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer{display:none;max-height:70%;max-width:500px;position:fixed;right:0;width:100%}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList{background:#fff;border:2px solid #333;color:#333;font-size:11px;height:auto;overflow:auto;text-align:left}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList strong{color:#333}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle{background:#fff;margin-top:21px;padding:13px 0 9px 13px;text-align:left;border-radius:5px 0 0 0}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle strong{color:#000;font-size:16px}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain{background:rgba(51,51,51,.1);padding:7px 5px 10px;word-wrap:break-word}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain:hover{background:rgba(51,51,51,.2)}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain a{color:#333;text-decoration:none}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft{display:inline-block;width:50%}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft a strong{color:#8b0000}#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListRight{color:#333;display:inline-block;font-size:11px;margin-left:10%;vertical-align:top;width:30%}#tarteaucitronServicesnoTitle_cookies #tarteaucitronServices_cookies .tarteaucitronHidden,div#tarteaucitronInfo{display:block!important}#tarteaucitronServicesnoTitle_cookies #tarteaucitronCookiesList .tarteaucitronH3{padding:8px 20px;margin-top:0!important}#tarteaucitronServicesnoTitle_cookies .tarteaucitronCookiesListLeft,#tarteaucitronServicesnoTitle_cookies .tarteaucitronCookiesListRight{padding:10px 14px;width:Calc(50% - 56px);display:inline-block;word-break:break-all;vertical-align:top}#tarteaucitronServicesnoTitle_cookies .tarteaucitronCookiesListRight{font-family:monospace}#tarteaucitronServicesnoTitle_cookies .tarteaucitron-spacer-20{height:0}#tarteaucitronServicesnoTitle_cookies .purgeBtn{cursor:pointer}html body #tarteaucitronRoot #tarteaucitron #tarteaucitronServicesnoTitle_cookies:hover #tarteaucitronCookiesList ul li{background:0 0!important}@media screen and (max-width:767px){#tarteaucitronServicesnoTitle_cookies #tarteaucitron-toggle-group-cookies{text-align:left;padding:0 0 0 3px!important}html body #tarteaucitronRoot #tarteaucitronServicesnoTitle_cookies .tarteaucitronCookiesListLeft .purgeBtn{display:inline!important;width:auto!important}}.tac_activate{background:#333;color:#fff;display:table;font-size:12px;height:100%;line-height:initial;margin:auto;text-align:center;width:100%}.tac_float{display:table-cell;text-align:center;vertical-align:middle}.tac_activate .tac_float .tarteaucitronAllow{background-color:#fbd600;display:inline-block}ins.adsbygoogle,ins.ferank-publicite{text-decoration:none}div.amazon_product{height:240px;width:120px}div#tarteaucitronInfo{position:relative!important;text-align:center!important;max-width:80%!important;padding:15px 0!important;margin:-10px auto 40px!important;font-size:1em!important;border-bottom:1px solid;border-top:1px solid;border-color:#555}a.tarteaucitronSelfLink{position:absolute;left:0;right:0;bottom:-30px;text-align:center!important;display:block;height:30px}#tarteaucitronRoot a.tarteaucitronSelfLink img{margin-left:auto;margin-right:auto}.tarteaucitronMainLine .tarteaucitronH2{font-size:1.2em!important;margin-top:4px!important}span.tarteaucitronTitle.tarteaucitronH3{margin-top:12px!important}#tarteaucitronCloseCross{position:absolute;color:#000;font-size:1.8rem;cursor:pointer;top:10px;right:26px}#tarteaucitronCloseCross span{color:inherit}.tarteaucitron-spacer-20{height:20px;display:block}.tarteaucitron-display-block{display:block}.tarteaucitron-display-none{display:none}#tarteaucitronRoot.tarteaucitronSize-middle #tarteaucitronAlertBig::before,#tarteaucitronRoot.tarteaucitronSize-popup #tarteaucitronAlertBig::before{content:var(--tacTitleBanner)}div#tarteaucitronRoot.tarteaucitronSize-middle.tarteaucitronBeforeVisible:before{content:"";position:fixed;width:100%;height:100%;background:#fff;top:0;left:0;z-index:999;opacity:.5}body #tarteaucitronRoot.tarteaucitronSize-middle div#tarteaucitronAlertBig{width:60%;min-width:285px;height:fit-content;margin:auto;top:0;left:0;bottom:0;right:0;box-shadow:0 0 9000px #000;border-radius:20px;padding:35px 25px}.tarteaucitronSize-middle span#tarteaucitronDisclaimerAlert{padding:0 30px}#tarteaucitronRoot.tarteaucitronSize-middle span#tarteaucitronDisclaimerAlert,#tarteaucitronRoot.tarteaucitronSize-popup span#tarteaucitronDisclaimerAlert{margin:10px 0 30px;display:block;text-align:center;font-size:21px}@media screen and (max-width:900px){.tarteaucitronSize-middle div#tarteaucitronAlertBig button{margin:0 auto 10px!important;display:block!important}}.tarteaucitronSize-middle div#tarteaucitronAlertBig:before{font-size:35px}.tarteaucitronSize-popup div#tarteaucitronAlertBig:before{font-size:22px}body #tarteaucitronRoot.tarteaucitronSize-popup div#tarteaucitronAlertBig{bottom:0;top:auto!important;left:8px!important;right:auto!important;transform:initial!important;border-radius:5px 5px 0 0!important;max-width:250px!important;width:calc(100% - 16px)!important;min-width:0!important;padding:25px 0}.tarteaucitronSize-popup span#tarteaucitronDisclaimerAlert{padding:0 30px;font-size:15px!important}.tarteaucitronSize-popup div#tarteaucitronAlertBig button:not(#tarteaucitronCloseCross){margin:0 auto 10px!important;display:block!important;width:calc(100% - 60px);box-sizing:border-box} \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.ar.js b/static/tarteaucitron/lang/tarteaucitron.ar.js index 38987cb..a707170 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ar.js +++ b/static/tarteaucitron/lang/tarteaucitron.ar.js @@ -2,7 +2,7 @@ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "مرحبا! يلعب هذا الموقع الكتروني على الشفافية ويمنحك اختيار خدمات الطرف الثالث للتفعيل.", "adblock_call": "يرجى إلغاء تنشيط adblocker لبدء التخصيص.", "reload": "أعد تحميل الصفحة", diff --git a/static/tarteaucitron/lang/tarteaucitron.ar.min.js b/static/tarteaucitron/lang/tarteaucitron.ar.min.js index a28da24..a7cb02c 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ar.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.ar.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"مرحبا! يلعب هذا الموقع الكتروني على الشفافية ويمنحك اختيار خدمات الطرف الثالث للتفعيل.",adblock_call:"يرجى إلغاء تنشيط adblocker لبدء التخصيص.",reload:"أعد تحميل الصفحة",alertBigScroll:"من خلال الاستمرار في العرض",alertBigClick:"من خلال إستمرارك بالتصفُّح على هذا الموقع",alertBig:"أنت توافق استخدام خدمات الطرف الثالث التي يمكنها تثبيت ملفات تعريف الارتباط",alertBigPrivacy:"يستخدم هذا الموقع ملفات تعريف الارتباط ويمنحك التحكم في تلك التي تريد تنشيطها",alertSmall:"إدارة الخدمات",acceptAll:"تقبل كل شيء",personalize:"تخصيص",close:"اغلاق",closeBanner:"إخفاء لافتة ملفات تعريف الارتباط",privacyUrl:"سياسة الخصوصية",all:"التفضيلات لجميع الخدمات",info:"حماية خصوصيتك",disclaimer:"من خلال تفويض هذه خدمات الطرف الثالث ، فإنك تقبل إيداع وقراءة ملفات تعريف الارتباط واستخدام تقنيات المراقبة اللازمة لعملها بشكل صحيح",allow:"سماح",deny:"منع",noCookie:"لا تقوم هذه الخدمة بإيداع أي ملفات تعريف ارتباط",useCookie:"يمكن لهذه الخدمة الإيداع",useCookieCurrent:"قدَّمت هذه الخدمة",useNoCookie:"لم تودع هذه الخدمة أي ملفات تعريف ارتباط.",more:"اقرأ المزيد",source:"شاهد الموقع الرسمي",credit:"إدارة ملفات تعريف الارتباط من قبل tarteaucitron.js",noServices:"لا يستخدم هذا الموقع أي ملفات تعريف ارتباط تتطلب موافقتك.",toggleInfoBox:"إظهار/إخفاء معلومات حول تخزين ملفات تعريف الارتباط",title:"لوحة إدارة ملفات تعريف الارتباط",cookieDetail:"تفاصيل ملفات تعريف الارتباط",ourSite:"على موقعنا على الانترنت",modalWindow:"(نافذة شكلية)",newWindow:"(نافذة جديدة)",allowAll:"قبول كل شيء",denyAll:"رفض كل شيء",icon:"ملفات تعريف الارتباط",fallback:"معطل.",allowed:"مسموح",disallowed:"ممنوع",ads:{title:"وكالات الإعلان",details:"تجعل وكالات الإعلان من الممكن تحقيق إيرادات من خلال تسويق المساحة الإعلانية على الموقع"},analytic:{title:"قياس الجمهور",details:"تسمح خدمات قياس الجمهور بانشاء إحصاءآت حول حركة المرور المفيذة لتحسين الموقع"},social:{title:"الشبكات الاجتماعية",details:"تعمل الشبكات الاجتماعية على تحسين سهولة استخدام الموقع وتساعد في الترويج له من خلال المشاركة."},video:{title:"الفيديوهات",details:"تعمل خدمات مشاركة الفيديو على إثراء الموقع بمحتوى الوسائط المتعددة وزيادة ظهوره."},comment:{title:"تعليقات",details:"يقوم مديري التعليق بتسهيل إيداع تعليقاتك ومحاربة البريد المزعج."},support:{title:"الدعم",details:"تسمح لك خدمات الدعم بالتواصل مع فريق الموقع ومساعدة تحسينه."},api:{title:"واجهات برمجة التطبيقات",details:"تسمح لك واجهات برمجة التطبيقات بتحميل البرامج النصية: تحديد الموقع الجغرافي ، ومحركات البحث ، والترجمات ، ..."},other:{title:"آخر",details:"خدمات لعرض محتوى الويب"},google:{title:"موافقة محددة لخدمات Google",details:"قد تستخدم Google بياناتك لقياس الجمهور، وأداء الإعلانات، أو لتقديم إعلانات مخصصة لك."},mandatoryTitle:"ملفات تعريف الارتباط الإلزامية",mandatoryText:"يستخدم هذا الموقع ملفات تعريف الارتباط الضرورية لعمله بشكل صحيح. لا يمكن تعطيلها",save:"حفظ",ourpartners:"شركاؤنا"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"مرحبا! يلعب هذا الموقع الكتروني على الشفافية ويمنحك اختيار خدمات الطرف الثالث للتفعيل.",adblock_call:"يرجى إلغاء تنشيط adblocker لبدء التخصيص.",reload:"أعد تحميل الصفحة",alertBigScroll:"من خلال الاستمرار في العرض",alertBigClick:"من خلال إستمرارك بالتصفُّح على هذا الموقع",alertBig:"أنت توافق استخدام خدمات الطرف الثالث التي يمكنها تثبيت ملفات تعريف الارتباط",alertBigPrivacy:"يستخدم هذا الموقع ملفات تعريف الارتباط ويمنحك التحكم في تلك التي تريد تنشيطها",alertSmall:"إدارة الخدمات",acceptAll:"تقبل كل شيء",personalize:"تخصيص",close:"اغلاق",closeBanner:"إخفاء لافتة ملفات تعريف الارتباط",privacyUrl:"سياسة الخصوصية",all:"التفضيلات لجميع الخدمات",info:"حماية خصوصيتك",disclaimer:"من خلال تفويض هذه خدمات الطرف الثالث ، فإنك تقبل إيداع وقراءة ملفات تعريف الارتباط واستخدام تقنيات المراقبة اللازمة لعملها بشكل صحيح",allow:"سماح",deny:"منع",noCookie:"لا تقوم هذه الخدمة بإيداع أي ملفات تعريف ارتباط",useCookie:"يمكن لهذه الخدمة الإيداع",useCookieCurrent:"قدَّمت هذه الخدمة",useNoCookie:"لم تودع هذه الخدمة أي ملفات تعريف ارتباط.",more:"اقرأ المزيد",source:"شاهد الموقع الرسمي",credit:"إدارة ملفات تعريف الارتباط من قبل tarteaucitron.js",noServices:"لا يستخدم هذا الموقع أي ملفات تعريف ارتباط تتطلب موافقتك.",toggleInfoBox:"إظهار/إخفاء معلومات حول تخزين ملفات تعريف الارتباط",title:"لوحة إدارة ملفات تعريف الارتباط",cookieDetail:"تفاصيل ملفات تعريف الارتباط",ourSite:"على موقعنا على الانترنت",modalWindow:"(نافذة شكلية)",newWindow:"(نافذة جديدة)",allowAll:"قبول كل شيء",denyAll:"رفض كل شيء",icon:"ملفات تعريف الارتباط",fallback:"معطل.",allowed:"مسموح",disallowed:"ممنوع",ads:{title:"وكالات الإعلان",details:"تجعل وكالات الإعلان من الممكن تحقيق إيرادات من خلال تسويق المساحة الإعلانية على الموقع"},analytic:{title:"قياس الجمهور",details:"تسمح خدمات قياس الجمهور بانشاء إحصاءآت حول حركة المرور المفيذة لتحسين الموقع"},social:{title:"الشبكات الاجتماعية",details:"تعمل الشبكات الاجتماعية على تحسين سهولة استخدام الموقع وتساعد في الترويج له من خلال المشاركة."},video:{title:"الفيديوهات",details:"تعمل خدمات مشاركة الفيديو على إثراء الموقع بمحتوى الوسائط المتعددة وزيادة ظهوره."},comment:{title:"تعليقات",details:"يقوم مديري التعليق بتسهيل إيداع تعليقاتك ومحاربة البريد المزعج."},support:{title:"الدعم",details:"تسمح لك خدمات الدعم بالتواصل مع فريق الموقع ومساعدة تحسينه."},api:{title:"واجهات برمجة التطبيقات",details:"تسمح لك واجهات برمجة التطبيقات بتحميل البرامج النصية: تحديد الموقع الجغرافي ، ومحركات البحث ، والترجمات ، ..."},other:{title:"آخر",details:"خدمات لعرض محتوى الويب"},google:{title:"موافقة محددة لخدمات Google",details:"قد تستخدم Google بياناتك لقياس الجمهور، وأداء الإعلانات، أو لتقديم إعلانات مخصصة لك."},mandatoryTitle:"ملفات تعريف الارتباط الإلزامية",mandatoryText:"يستخدم هذا الموقع ملفات تعريف الارتباط الضرورية لعمله بشكل صحيح. لا يمكن تعطيلها",save:"حفظ",ourpartners:"شركاؤنا"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.bg.js b/static/tarteaucitron/lang/tarteaucitron.bg.js index 0acf0d2..8bd9a59 100644 --- a/static/tarteaucitron/lang/tarteaucitron.bg.js +++ b/static/tarteaucitron/lang/tarteaucitron.bg.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Здравей! Този сайт позволяа включването на бисквитки по избор.", "adblock_call": "Моля изключете вашият adblocker и изберете бисквитките които искате, или спрете всички.", "reload": "Презареди", diff --git a/static/tarteaucitron/lang/tarteaucitron.bg.min.js b/static/tarteaucitron/lang/tarteaucitron.bg.min.js index a0cfaf1..613cda7 100644 --- a/static/tarteaucitron/lang/tarteaucitron.bg.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.bg.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Здравей! Този сайт позволяа включването на бисквитки по избор.",adblock_call:"Моля изключете вашият adblocker и изберете бисквитките които искате, или спрете всички.",reload:"Презареди",alertBigScroll:"Ако продължавате да скролвате,",alertBigClick:"Ако продължавате да използвате този сайт,",alertBig:"вив се съгласявате с всички бисквитки от трети лица.",alertBigPrivacy:"Този сайт използва бисквитки и Ви дава право да изберете записването на определени или всички.",alertSmall:"Управление на услуги",personalize:"Ще избирам",acceptAll:"ОК, приемам всички",close:"Затвори",closeBanner:"Скриване на банера за бисквитки",privacyUrl:"Политика за поверителност",all:"Услуги които записват бисквитки на този сайт",info:"Зашитава вашата сигурност",disclaimer:"Позволяването на тези бисквитки от трети лица, Вие приемате те да записват и използват услуги за проследяване нужни за правилното им функциониране.",allow:"Разшреши",deny:"Забрани",noCookie:"Тази услуга не записва бисквитки.",useCookie:"Тази услуга може да запише",useCookieCurrent:"Тази услуга е записала",useNoCookie:"Тази услуга не е записала бисквитки.",more:"Прочети повече",source:"Официален сайт",credit:"Управление на бисквитките от tarteaucitron.js",noServices:"Този уебсайт не използва никакви бисквитки, изискващи вашето съгласие.",toggleInfoBox:"Покажи/скрий информация за записването на бисквитки",title:"Управление на бисквитките",cookieDetail:"Информация за",ourSite:"в нашият сайт",modalWindow:"(модален прозорец)",newWindow:"(нов прозорец)",allowAll:"Разреши всички",denyAll:"Забрани всички",icon:"Бисквитки",fallback:"е изключен.",allowed:"Позволен",disallowed:"Забранено",ads:{title:"Рекламодатели",details:"Мрежите за реклами могат да генерират приходи, като продават рекламно пространство на сайта."},analytic:{title:"Аналитични",details:"Услугите за измерване на аудиторията се използват за генериране на полезна статистика за посещаемостта с цел подобряване на сайта."},social:{title:"Социални",details:"Социалните мрежи могат да подобрят употребата на сайта и да помогнат за неговото популяризиране чрез споделяне."},video:{title:"Видео платформи",details:"Услугите за споделяне на видео помагат за добавянето на богат медиен съдържание на сайта и увеличаването на видимостта му."},comment:{title:"Коментари",details:"Управителите на коментари улесняват подаването на коментари и борбата срещу спама."},support:{title:"Поддръжка",details:"Услугите за поддръжка ви позволяват да се свържете с екипа на сайта и да помогнете за неговото подобряване."},api:{title:"Функционални",details:"API се използват за зареждане на скриптове: геолокация, търсачки, преводи, ..."},other:{title:"Други",details:"Услуги за показване на уеб съдържание."},google:{title:"Специфично съгласие за услугите на Google",details:"Google може да използва данните ви за измерване на аудиторията, рекламна ефективност или за предлагане на персонализирани реклами."},mandatoryTitle:"Задължителни бисквитки",mandatoryText:"Този сайт използва бисквитки, необходими за неговото правилно функциониране, които не могат да бъдат деактивирани.",save:"Запазване",ourpartners:"Нашите партньори"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Здравей! Този сайт позволяа включването на бисквитки по избор.",adblock_call:"Моля изключете вашият adblocker и изберете бисквитките които искате, или спрете всички.",reload:"Презареди",alertBigScroll:"Ако продължавате да скролвате,",alertBigClick:"Ако продължавате да използвате този сайт,",alertBig:"вив се съгласявате с всички бисквитки от трети лица.",alertBigPrivacy:"Този сайт използва бисквитки и Ви дава право да изберете записването на определени или всички.",alertSmall:"Управление на услуги",personalize:"Ще избирам",acceptAll:"ОК, приемам всички",close:"Затвори",closeBanner:"Скриване на банера за бисквитки",privacyUrl:"Политика за поверителност",all:"Услуги които записват бисквитки на този сайт",info:"Зашитава вашата сигурност",disclaimer:"Позволяването на тези бисквитки от трети лица, Вие приемате те да записват и използват услуги за проследяване нужни за правилното им функциониране.",allow:"Разшреши",deny:"Забрани",noCookie:"Тази услуга не записва бисквитки.",useCookie:"Тази услуга може да запише",useCookieCurrent:"Тази услуга е записала",useNoCookie:"Тази услуга не е записала бисквитки.",more:"Прочети повече",source:"Официален сайт",credit:"Управление на бисквитките от tarteaucitron.js",noServices:"Този уебсайт не използва никакви бисквитки, изискващи вашето съгласие.",toggleInfoBox:"Покажи/скрий информация за записването на бисквитки",title:"Управление на бисквитките",cookieDetail:"Информация за",ourSite:"в нашият сайт",modalWindow:"(модален прозорец)",newWindow:"(нов прозорец)",allowAll:"Разреши всички",denyAll:"Забрани всички",icon:"Бисквитки",fallback:"е изключен.",allowed:"Позволен",disallowed:"Забранено",ads:{title:"Рекламодатели",details:"Мрежите за реклами могат да генерират приходи, като продават рекламно пространство на сайта."},analytic:{title:"Аналитични",details:"Услугите за измерване на аудиторията се използват за генериране на полезна статистика за посещаемостта с цел подобряване на сайта."},social:{title:"Социални",details:"Социалните мрежи могат да подобрят употребата на сайта и да помогнат за неговото популяризиране чрез споделяне."},video:{title:"Видео платформи",details:"Услугите за споделяне на видео помагат за добавянето на богат медиен съдържание на сайта и увеличаването на видимостта му."},comment:{title:"Коментари",details:"Управителите на коментари улесняват подаването на коментари и борбата срещу спама."},support:{title:"Поддръжка",details:"Услугите за поддръжка ви позволяват да се свържете с екипа на сайта и да помогнете за неговото подобряване."},api:{title:"Функционални",details:"API се използват за зареждане на скриптове: геолокация, търсачки, преводи, ..."},other:{title:"Други",details:"Услуги за показване на уеб съдържание."},google:{title:"Специфично съгласие за услугите на Google",details:"Google може да използва данните ви за измерване на аудиторията, рекламна ефективност или за предлагане на персонализирани реклами."},mandatoryTitle:"Задължителни бисквитки",mandatoryText:"Този сайт използва бисквитки, необходими за неговото правилно функциониране, които не могат да бъдат деактивирани.",save:"Запазване",ourpartners:"Нашите партньори"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.ca.js b/static/tarteaucitron/lang/tarteaucitron.ca.js index 412e021..d5e6a23 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ca.js +++ b/static/tarteaucitron/lang/tarteaucitron.ca.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Hola! Aquest lloc web és transparent i et dóna l'opció d'activar els serveis de tercers", "adblock_call": "Si us plau desactiva la teva AdBlocker per començar a personalitzar els serveis.", "reload": "Recarrega aquesta pàgina", diff --git a/static/tarteaucitron/lang/tarteaucitron.ca.min.js b/static/tarteaucitron/lang/tarteaucitron.ca.min.js index 9add124..77abcb7 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ca.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.ca.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Hola! Aquest lloc web és transparent i et dóna l'opció d'activar els serveis de tercers",adblock_call:"Si us plau desactiva la teva AdBlocker per començar a personalitzar els serveis.",reload:"Recarrega aquesta pàgina",alertBigScroll:"Al continuar desplaçant,",alertBigClick:"Si continues navegant en aquest lloc web,",alertBig:"estàs permetent serveis tercers",alertBigPrivacy:"Aquest lloc web fa servir galetes i et permet controlar les que vols activar",alertSmall:"Gestionar serveis",personalize:"Personalitzar",acceptAll:"OK, acceptar totes",close:"Tancar",closeBanner:"Amaga el banner de galetes",privacyUrl:"Política de privacitat",all:"Ajustaments per a tots els serveis",info:"Protegint la teva privacitat",disclaimer:"Acceptant aquests serveis de tercers, estàs acceptant les seves galetes i l'ús de tecnologies de rastreig necessàries per al seu correcte funcionament.",allow:"Permetre",deny:"Denegar",noCookie:"Aquest servei no fa servir galetes.",useCookie:"Aquest servei pot instal·lar",useCookieCurrent:"Aquest servei ha instal·lat",useNoCookie:"Aquest servei no ha instal·lat cap galeta.",more:"Llegir més",source:"Veure lloc web oficial",credit:"Gestor de galetes realitzat per tarteaucitron.js",noServices:"Aquest lloc web no utilitza cap cookie que requereixi el vostre consentiment.",toggleInfoBox:"Mostra / oculta la informació sobre emmagatzematge de galetes",title:"Panell de gestió de galetes",cookieDetail:"Detalls de les galetes per a",ourSite:"en la nostra web",modalWindow:"(finestra modale)",newWindow:"(finestra nova)",allowAll:"Permet totes les galetes",denyAll:"Denega totes les galetes",icon:"Cookies",fallback:"està deshabilitat.",allowed:"Permès",disallowed:"Desautoritzat",ads:{title:"Xarxa de publicitat",details:"Les xarxes publicitàries poden generar ingressos mitjançant la venda d'espais publicitaris en el lloc."},analytic:{title:"Mesura d'audiència",details:"Els serveis de mesurament d'audiència s'usen per generar estadístiques útils per millorar el lloc."},social:{title:"Xarxes socials",details:"Les xarxes socials poden augmentar la usabilitat del lloc web i ajudar a promoure-ho a través de la contribució."},video:{title:"Videos",details:"Els serveis per compartir vídeos ajuden a afegir contingut enriquit en el lloc web i augmentar la seva visibilitat."},comment:{title:"Comentaris",details:"El gestor de comentaris facilita la classificació de comentaris i lluitar contra robots de correu."},support:{title:"Suport",details:"Els serveis de suport et permeten contactar amb el lloc web i ajudar a millorar-lo"},api:{title:"APIs",details:"Les APIs s'utilitzen per carregar scripts: geolocalització, motor de cerca, traduccions, ..."},other:{title:"Altres",details:"Serveis per mostrar contingut web."},google:{title:"Consentiment específic als serveis de Google",details:"Google pot utilitzar les vostres dades per a la mesura de l'audiència, el rendiment publicitari o per oferir-vos anuncis personalitzats."},mandatoryTitle:"Galetes obligatòries",mandatoryText:"Aquest lloc utilitza galetes necessàries per al seu correcte funcionament que no es poden desactivar (cookies tècniques).",save:"Desar",ourpartners:"Els nostres socis"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Hola! Aquest lloc web és transparent i et dóna l'opció d'activar els serveis de tercers",adblock_call:"Si us plau desactiva la teva AdBlocker per començar a personalitzar els serveis.",reload:"Recarrega aquesta pàgina",alertBigScroll:"Al continuar desplaçant,",alertBigClick:"Si continues navegant en aquest lloc web,",alertBig:"estàs permetent serveis tercers",alertBigPrivacy:"Aquest lloc web fa servir galetes i et permet controlar les que vols activar",alertSmall:"Gestionar serveis",personalize:"Personalitzar",acceptAll:"OK, acceptar totes",close:"Tancar",closeBanner:"Amaga el banner de galetes",privacyUrl:"Política de privacitat",all:"Ajustaments per a tots els serveis",info:"Protegint la teva privacitat",disclaimer:"Acceptant aquests serveis de tercers, estàs acceptant les seves galetes i l'ús de tecnologies de rastreig necessàries per al seu correcte funcionament.",allow:"Permetre",deny:"Denegar",noCookie:"Aquest servei no fa servir galetes.",useCookie:"Aquest servei pot instal·lar",useCookieCurrent:"Aquest servei ha instal·lat",useNoCookie:"Aquest servei no ha instal·lat cap galeta.",more:"Llegir més",source:"Veure lloc web oficial",credit:"Gestor de galetes realitzat per tarteaucitron.js",noServices:"Aquest lloc web no utilitza cap cookie que requereixi el vostre consentiment.",toggleInfoBox:"Mostra / oculta la informació sobre emmagatzematge de galetes",title:"Panell de gestió de galetes",cookieDetail:"Detalls de les galetes per a",ourSite:"en la nostra web",modalWindow:"(finestra modale)",newWindow:"(finestra nova)",allowAll:"Permet totes les galetes",denyAll:"Denega totes les galetes",icon:"Cookies",fallback:"està deshabilitat.",allowed:"Permès",disallowed:"Desautoritzat",ads:{title:"Xarxa de publicitat",details:"Les xarxes publicitàries poden generar ingressos mitjançant la venda d'espais publicitaris en el lloc."},analytic:{title:"Mesura d'audiència",details:"Els serveis de mesurament d'audiència s'usen per generar estadístiques útils per millorar el lloc."},social:{title:"Xarxes socials",details:"Les xarxes socials poden augmentar la usabilitat del lloc web i ajudar a promoure-ho a través de la contribució."},video:{title:"Videos",details:"Els serveis per compartir vídeos ajuden a afegir contingut enriquit en el lloc web i augmentar la seva visibilitat."},comment:{title:"Comentaris",details:"El gestor de comentaris facilita la classificació de comentaris i lluitar contra robots de correu."},support:{title:"Suport",details:"Els serveis de suport et permeten contactar amb el lloc web i ajudar a millorar-lo"},api:{title:"APIs",details:"Les APIs s'utilitzen per carregar scripts: geolocalització, motor de cerca, traduccions, ..."},other:{title:"Altres",details:"Serveis per mostrar contingut web."},google:{title:"Consentiment específic als serveis de Google",details:"Google pot utilitzar les vostres dades per a la mesura de l'audiència, el rendiment publicitari o per oferir-vos anuncis personalitzats."},mandatoryTitle:"Galetes obligatòries",mandatoryText:"Aquest lloc utilitza galetes necessàries per al seu correcte funcionament que no es poden desactivar (cookies tècniques).",save:"Desar",ourpartners:"Els nostres socis"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.cn.js b/static/tarteaucitron/lang/tarteaucitron.cn.js index 0371b8b..f939f99 100644 --- a/static/tarteaucitron/lang/tarteaucitron.cn.js +++ b/static/tarteaucitron/lang/tarteaucitron.cn.js @@ -1,6 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { + "middleBarHead": "☝️ 🍪", "adblock": "您好!这是一个透明的网站,您可以选择激活不同的第三方服务。", "adblock_call": "感谢您停用广告拦截功能并开始个性化设置。", "reload": "重新加载页面", diff --git a/static/tarteaucitron/lang/tarteaucitron.cn.min.js b/static/tarteaucitron/lang/tarteaucitron.cn.min.js index 094f694..4ec6118 100644 --- a/static/tarteaucitron/lang/tarteaucitron.cn.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.cn.min.js @@ -1 +1 @@ -tarteaucitron.lang={adblock:"您好!这是一个透明的网站,您可以选择激活不同的第三方服务。",adblock_call:"感谢您停用广告拦截功能并开始个性化设置。",reload:"重新加载页面",alertBigScroll:"继续划屏,",alertBigClick:"继续浏览,",alertBig:"即表示您同意第三方服务安装cookie",alertBigPrivacy:"这个网站使用cookie, 并让您可以控制想要激活的内容。",alertSmall:"服务管理",acceptAll:"好的,全部接受",personalize:"个性化",close:"关闭",closeBanner:"隐藏 cookie 横幅",privacyUrl:"保密政策",all:"所有服务的偏好设置",disclaimer:"通过授权这些第三方服务,您同意存储和读取cookie,并使用其正常运行所需的跟踪技术。",allow:"允许",deny:"禁用",noCookie:"此服务不存储任何cookie。",useCookie:"此服务可以存储",useCookieCurrent:"此服务已存储",useNoCookie:"此服务未存储任何cookie。",more:"了解更多",source:"查看官网",credit:"通过tarteaucitron.js管理cookie",noServices:"本网站不使用任何需要您同意的cookie。",toggleInfoBox:"显示/隐藏cookie存储信息。",title:"Cookie管理面板",cookieDetail:"Cookie详情",ourSite:"显示在我们的网站上",modalWindow:"(模态窗口)",newWindow:"(新建窗口)",allowAll:"允许",denyAll:"禁用",icon:"Cookies",fallback:"已禁用。",allowed:"允许的",disallowed:"不允许的",ads:{title:"广告组",details:"广告组通过营销网站上的广告空间来产生收入."},analytic:{title:"受众测量",details:"受众测量服务可以生成对站点改进有用的访问统计数据。"},social:{title:"社交网络",details:"社交网络有助于提高网站的用户友好性,并通过分享帮助推广。"},video:{title:"视频",details:"视频共享服务丰富网站的多媒体内容,提高网站知名度。"},comment:{title:"评论",details:"评论管理器使您的评论更容易提交,并避免垃圾邮件。"},support:{title:"支持",details:"支持服务使您能够与网站团队联系并帮助改进网站."},api:{title:"API",details:"API允许加载脚本:地理位置、搜索引擎、翻译……"},other:{title:"其他",details:"旨在显示网页内容的服务。"},google:{title:"Google 服务的特定同意",details:"Google 可能使用您的数据进行受众测量、广告效果评估,或向您提供个性化广告。"},mandatoryTitle:"强制性Cookie",mandatoryText:"该网站使用必要的Cookie以保证其正常运行,这些Cookie无法停用。",save:"保存",ourpartners:"我们的合作伙伴"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"您好!这是一个透明的网站,您可以选择激活不同的第三方服务。",adblock_call:"感谢您停用广告拦截功能并开始个性化设置。",reload:"重新加载页面",alertBigScroll:"继续划屏,",alertBigClick:"继续浏览,",alertBig:"即表示您同意第三方服务安装cookie",alertBigPrivacy:"这个网站使用cookie, 并让您可以控制想要激活的内容。",alertSmall:"服务管理",acceptAll:"好的,全部接受",personalize:"个性化",close:"关闭",closeBanner:"隐藏 cookie 横幅",privacyUrl:"保密政策",all:"所有服务的偏好设置",disclaimer:"通过授权这些第三方服务,您同意存储和读取cookie,并使用其正常运行所需的跟踪技术。",allow:"允许",deny:"禁用",noCookie:"此服务不存储任何cookie。",useCookie:"此服务可以存储",useCookieCurrent:"此服务已存储",useNoCookie:"此服务未存储任何cookie。",more:"了解更多",source:"查看官网",credit:"通过tarteaucitron.js管理cookie",noServices:"本网站不使用任何需要您同意的cookie。",toggleInfoBox:"显示/隐藏cookie存储信息。",title:"Cookie管理面板",cookieDetail:"Cookie详情",ourSite:"显示在我们的网站上",modalWindow:"(模态窗口)",newWindow:"(新建窗口)",allowAll:"允许",denyAll:"禁用",icon:"Cookies",fallback:"已禁用。",allowed:"允许的",disallowed:"不允许的",ads:{title:"广告组",details:"广告组通过营销网站上的广告空间来产生收入."},analytic:{title:"受众测量",details:"受众测量服务可以生成对站点改进有用的访问统计数据。"},social:{title:"社交网络",details:"社交网络有助于提高网站的用户友好性,并通过分享帮助推广。"},video:{title:"视频",details:"视频共享服务丰富网站的多媒体内容,提高网站知名度。"},comment:{title:"评论",details:"评论管理器使您的评论更容易提交,并避免垃圾邮件。"},support:{title:"支持",details:"支持服务使您能够与网站团队联系并帮助改进网站."},api:{title:"API",details:"API允许加载脚本:地理位置、搜索引擎、翻译……"},other:{title:"其他",details:"旨在显示网页内容的服务。"},google:{title:"Google 服务的特定同意",details:"Google 可能使用您的数据进行受众测量、广告效果评估,或向您提供个性化广告。"},mandatoryTitle:"强制性Cookie",mandatoryText:"该网站使用必要的Cookie以保证其正常运行,这些Cookie无法停用。",save:"保存",ourpartners:"我们的合作伙伴"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.cs.js b/static/tarteaucitron/lang/tarteaucitron.cs.js index 9ab79e8..6efb3ab 100644 --- a/static/tarteaucitron/lang/tarteaucitron.cs.js +++ b/static/tarteaucitron/lang/tarteaucitron.cs.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Ahoj! Tato stránka je transparetní a umožňuje ti si přímo vybrat, jaké služby třetích stran chceš povolit.", "adblock_call": "Pro úpravu osobních preferencí si, prosím, vypni adblock.", "reload": "Načíst stránku znovu", diff --git a/static/tarteaucitron/lang/tarteaucitron.cs.min.js b/static/tarteaucitron/lang/tarteaucitron.cs.min.js index 5bee000..6c83a94 100644 --- a/static/tarteaucitron/lang/tarteaucitron.cs.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.cs.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Ahoj! Tato stránka je transparetní a umožňuje ti si přímo vybrat, jaké služby třetích stran chceš povolit.",adblock_call:"Pro úpravu osobních preferencí si, prosím, vypni adblock.",reload:"Načíst stránku znovu",alertBigScroll:"Pokračováním ve scrollování,",alertBigClick:"Pokud pokračujete v brouzdání našich stránek,",alertBig:"povolujete všechny služby třetích stran.",alertBigPrivacy:"Tato stránka využívá cookies a dává ti na výběr, co chceš aktivovat",alertSmall:"Spravovat služby",personalize:"Přizpůsobit",acceptAll:"OK, přijmout vše",close:"Zavřít",closeBanner:"Skrýt banner souborů cookie",privacyUrl:"Zásady ochrany osobních údajů",all:"Nastavení všech služeb",info:"Chrání tvé soukromí",disclaimer:"Povolením těchto služeb třetích stran, přijímáš jejich cookies, jež jsou nezbytné pro řádné fungování jejich technologií.",allow:"Povolit",deny:"Zamítnout",noCookie:"Tato služba nepoužívá cookies.",useCookie:"Tato služba může nainstalovat",useCookieCurrent:"Tato služba nainstalovala",useNoCookie:"Tato služba nenainstalovala žádné cookies.",more:"Dozvědět se více",source:"Zobrazit oficiální stránku",credit:"Správce cookies od tarteaucitron.js",noServices:"Tento web nepoužívá žádné soubory cookie vyžadující váš souhlas.",toggleInfoBox:"Zobrazit/skrýt informace o ukládání souborů cookie",title:"Panel pro správu cookies",cookieDetail:"Podrobnosti o souboru cookie pro",ourSite:"na našem webu",modalWindow:"(modální okno)",newWindow:"(nové okno)",allowAll:"Povolit všechny soubory cookie",denyAll:"Odmítnout všechny cookies",icon:"Cookies",fallback:"je vypnutý.",allowed:"povoleno",disallowed:"nepovoleno",ads:{title:"Reklamní síť",details:"Prodejem reklamních ploch na této stránce mohou reklamní sítě vydělávat peníze."},analytic:{title:"Statistika návštěvnosti",details:"Služby pro analýzu návštěvníků slouží k vytvoření užitečných statistik návštěvnosti. Ty zase slouží ke zlepšení stránky."},social:{title:"Sociální sítě",details:"Sociální sítě mohou usnadnit práci se stránkou a pomáhají jí prosadit se pomocí sdílení."},video:{title:"Videa",details:"Video-hostingové služby pomáhají přidat na stránku bohaté mediální prvky."},comment:{title:"Komentáře",details:"Správce komentářů zajišťují vyplňování komentářů a bojují proti šíření spamu."},support:{title:"Podpora",details:"Služby podpory ti pomáhají spojit se s týmem stojícím za stránkou a umožňují ti vyjádřit se k jejím nedostatkům."},api:{title:"API",details:"API slouží k načtění skriptů: geolokace, vyhledávačů, překladů, ..."},other:{title:"Jiný",details:"Služby pro zobrazení webového obsahu."},google:{title:"Specifický souhlas se službami Google",details:"Google může využívat vaše údaje k měření publika, reklamnímu účinku nebo k zobrazení personalizovaných reklam."},mandatoryTitle:"Povinné soubory cookie",mandatoryText:"Tato stránka používá soubory cookie nezbytné pro její správné fungování, které nelze deaktivovat.",save:"Uložit",ourpartners:"Naši partneři"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Ahoj! Tato stránka je transparetní a umožňuje ti si přímo vybrat, jaké služby třetích stran chceš povolit.",adblock_call:"Pro úpravu osobních preferencí si, prosím, vypni adblock.",reload:"Načíst stránku znovu",alertBigScroll:"Pokračováním ve scrollování,",alertBigClick:"Pokud pokračujete v brouzdání našich stránek,",alertBig:"povolujete všechny služby třetích stran.",alertBigPrivacy:"Tato stránka využívá cookies a dává ti na výběr, co chceš aktivovat",alertSmall:"Spravovat služby",personalize:"Přizpůsobit",acceptAll:"OK, přijmout vše",close:"Zavřít",closeBanner:"Skrýt banner souborů cookie",privacyUrl:"Zásady ochrany osobních údajů",all:"Nastavení všech služeb",info:"Chrání tvé soukromí",disclaimer:"Povolením těchto služeb třetích stran, přijímáš jejich cookies, jež jsou nezbytné pro řádné fungování jejich technologií.",allow:"Povolit",deny:"Zamítnout",noCookie:"Tato služba nepoužívá cookies.",useCookie:"Tato služba může nainstalovat",useCookieCurrent:"Tato služba nainstalovala",useNoCookie:"Tato služba nenainstalovala žádné cookies.",more:"Dozvědět se více",source:"Zobrazit oficiální stránku",credit:"Správce cookies od tarteaucitron.js",noServices:"Tento web nepoužívá žádné soubory cookie vyžadující váš souhlas.",toggleInfoBox:"Zobrazit/skrýt informace o ukládání souborů cookie",title:"Panel pro správu cookies",cookieDetail:"Podrobnosti o souboru cookie pro",ourSite:"na našem webu",modalWindow:"(modální okno)",newWindow:"(nové okno)",allowAll:"Povolit všechny soubory cookie",denyAll:"Odmítnout všechny cookies",icon:"Cookies",fallback:"je vypnutý.",allowed:"povoleno",disallowed:"nepovoleno",ads:{title:"Reklamní síť",details:"Prodejem reklamních ploch na této stránce mohou reklamní sítě vydělávat peníze."},analytic:{title:"Statistika návštěvnosti",details:"Služby pro analýzu návštěvníků slouží k vytvoření užitečných statistik návštěvnosti. Ty zase slouží ke zlepšení stránky."},social:{title:"Sociální sítě",details:"Sociální sítě mohou usnadnit práci se stránkou a pomáhají jí prosadit se pomocí sdílení."},video:{title:"Videa",details:"Video-hostingové služby pomáhají přidat na stránku bohaté mediální prvky."},comment:{title:"Komentáře",details:"Správce komentářů zajišťují vyplňování komentářů a bojují proti šíření spamu."},support:{title:"Podpora",details:"Služby podpory ti pomáhají spojit se s týmem stojícím za stránkou a umožňují ti vyjádřit se k jejím nedostatkům."},api:{title:"API",details:"API slouží k načtění skriptů: geolokace, vyhledávačů, překladů, ..."},other:{title:"Jiný",details:"Služby pro zobrazení webového obsahu."},google:{title:"Specifický souhlas se službami Google",details:"Google může využívat vaše údaje k měření publika, reklamnímu účinku nebo k zobrazení personalizovaných reklam."},mandatoryTitle:"Povinné soubory cookie",mandatoryText:"Tato stránka používá soubory cookie nezbytné pro její správné fungování, které nelze deaktivovat.",save:"Uložit",ourpartners:"Naši partneři"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.da.js b/static/tarteaucitron/lang/tarteaucitron.da.js index 4aa49bc..d51cbdf 100644 --- a/static/tarteaucitron/lang/tarteaucitron.da.js +++ b/static/tarteaucitron/lang/tarteaucitron.da.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Hej! Dette sted er gennemsigtigt og giver dig mulighed for at vælge de tredjeparts tjenester, du vil tillade.", "adblock_call": "Deaktiver venligst din adblocker for at begynde tilpasningen.", "reload": "Opdater siden", diff --git a/static/tarteaucitron/lang/tarteaucitron.da.min.js b/static/tarteaucitron/lang/tarteaucitron.da.min.js index 92e999c..491d988 100644 --- a/static/tarteaucitron/lang/tarteaucitron.da.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.da.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Hej! Dette sted er gennemsigtigt og giver dig mulighed for at vælge de tredjeparts tjenester, du vil tillade.",adblock_call:"Deaktiver venligst din adblocker for at begynde tilpasningen.",reload:"Opdater siden",alertBigScroll:"Ved at fortsætte med at scrolle,",alertBigClick:"Hvis du fortsætter med at bruge dette websted,",alertBig:"tillader du alle tredjeparts tjenester",alertBigPrivacy:"Dette websted bruger cookies og giver dig kontrol over, hvad du vil aktivere",alertSmall:"Administrer tjenester",personalize:"Tilpas",acceptAll:"OK, accepter alle",close:"Luk",closeBanner:"Skjul cookie-banner",privacyUrl:"Fortrolighedspolitik",all:"Præference for alle tjenester",info:"Beskyttelse af dit privatliv",disclaimer:"Ved at tillade disse tredjeparts tjenester accepterer du deres cookies og brugen af sporingsteknologier, der er nødvendige for, at de fungerer korrekt.",allow:"Tillad",deny:"Afvis ",noCookie:"Denne service bruger ikke cookies",useCookie:"Denne service kan installere",useCookieCurrent:"Denne service er installeret",useNoCookie:"Denne service har ikke installeret nogen cookie.",more:"Læs mere",source:"Se det officielle websted",credit:"Cookies manager af tarteaucitron.js",noServices:"Dette websted bruger ikke nogen cookie, der kræver dit samtykke.",toggleInfoBox:"Vis / skjul informationer om opbevaring af cookies",title:"CCookie-styringspanel",cookieDetail:"Cookie detaljer for",ourSite:"på vores site",modalWindow:"(modal vindue)",newWindow:"(nyt vindue)",allowAll:"Tillad alle cookies",denyAll:"Afvis alle cookies",icon:"Cookies",fallback:"er deaktiveret.",allowed:"tilladt",disallowed:"ikke tilladt",ads:{title:"Annonceringsnetværk",details:"Annoncenetværk kan generere indtægter ved at sælge annonceplads på webstedet."},analytic:{title:"Måling af målgruppen",details:"Målingstjenesterne bruges til at generere nyttig statistisk til at forbedre webstedet."},social:{title:"Sociale netværk",details:"Sociale netværk kan forbedre anvendeligheden af webstedet og hjælpe med at markedsføre det via aktierne."},video:{title:"Videoer",details:"Videodelingstjenester hjælper med at tilføje rige medier på webstedet og øger dets synlighed."},comment:{title:"Kommentarer",details:"Kommentarledere letter arkiveringen af kommentarer og bekæmper spam."},support:{title:"Support",details:"Supporttjenester giver dig mulighed for at komme i kontakt med webstedsteamet og hjælpe med at forbedre det."},api:{title:"APIer",details:"AAPI'er bruges til at indlæse scripts: geolokalisation, søgemaskiner, oversættelser, ..."},other:{title:"Andet",details:"Tjenester til visning af webindhold."},google:{title:"Specifik samtykke til Googles tjenester",details:"Google kan bruge dine data til at måle publikum, reklamepræstation eller til at tilbyde dig personligt tilpassede annoncer."},mandatoryTitle:"Obligatoriske cookies",mandatoryText:"Denne hjemmeside bruger cookies, der er nødvendige for dens korrekte funktion, og som ikke kan deaktiveres.",save:"Gem",ourpartners:"Vores partnere"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Hej! Dette sted er gennemsigtigt og giver dig mulighed for at vælge de tredjeparts tjenester, du vil tillade.",adblock_call:"Deaktiver venligst din adblocker for at begynde tilpasningen.",reload:"Opdater siden",alertBigScroll:"Ved at fortsætte med at scrolle,",alertBigClick:"Hvis du fortsætter med at bruge dette websted,",alertBig:"tillader du alle tredjeparts tjenester",alertBigPrivacy:"Dette websted bruger cookies og giver dig kontrol over, hvad du vil aktivere",alertSmall:"Administrer tjenester",personalize:"Tilpas",acceptAll:"OK, accepter alle",close:"Luk",closeBanner:"Skjul cookie-banner",privacyUrl:"Fortrolighedspolitik",all:"Præference for alle tjenester",info:"Beskyttelse af dit privatliv",disclaimer:"Ved at tillade disse tredjeparts tjenester accepterer du deres cookies og brugen af sporingsteknologier, der er nødvendige for, at de fungerer korrekt.",allow:"Tillad",deny:"Afvis ",noCookie:"Denne service bruger ikke cookies",useCookie:"Denne service kan installere",useCookieCurrent:"Denne service er installeret",useNoCookie:"Denne service har ikke installeret nogen cookie.",more:"Læs mere",source:"Se det officielle websted",credit:"Cookies manager af tarteaucitron.js",noServices:"Dette websted bruger ikke nogen cookie, der kræver dit samtykke.",toggleInfoBox:"Vis / skjul informationer om opbevaring af cookies",title:"CCookie-styringspanel",cookieDetail:"Cookie detaljer for",ourSite:"på vores site",modalWindow:"(modal vindue)",newWindow:"(nyt vindue)",allowAll:"Tillad alle cookies",denyAll:"Afvis alle cookies",icon:"Cookies",fallback:"er deaktiveret.",allowed:"tilladt",disallowed:"ikke tilladt",ads:{title:"Annonceringsnetværk",details:"Annoncenetværk kan generere indtægter ved at sælge annonceplads på webstedet."},analytic:{title:"Måling af målgruppen",details:"Målingstjenesterne bruges til at generere nyttig statistisk til at forbedre webstedet."},social:{title:"Sociale netværk",details:"Sociale netværk kan forbedre anvendeligheden af webstedet og hjælpe med at markedsføre det via aktierne."},video:{title:"Videoer",details:"Videodelingstjenester hjælper med at tilføje rige medier på webstedet og øger dets synlighed."},comment:{title:"Kommentarer",details:"Kommentarledere letter arkiveringen af kommentarer og bekæmper spam."},support:{title:"Support",details:"Supporttjenester giver dig mulighed for at komme i kontakt med webstedsteamet og hjælpe med at forbedre det."},api:{title:"APIer",details:"AAPI'er bruges til at indlæse scripts: geolokalisation, søgemaskiner, oversættelser, ..."},other:{title:"Andet",details:"Tjenester til visning af webindhold."},google:{title:"Specifik samtykke til Googles tjenester",details:"Google kan bruge dine data til at måle publikum, reklamepræstation eller til at tilbyde dig personligt tilpassede annoncer."},mandatoryTitle:"Obligatoriske cookies",mandatoryText:"Denne hjemmeside bruger cookies, der er nødvendige for dens korrekte funktion, og som ikke kan deaktiveres.",save:"Gem",ourpartners:"Vores partnere"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.de.js b/static/tarteaucitron/lang/tarteaucitron.de.js index a3aa1f2..4bdb231 100644 --- a/static/tarteaucitron/lang/tarteaucitron.de.js +++ b/static/tarteaucitron/lang/tarteaucitron.de.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Hallo! Diese Seite ist transparent und lässt Ihnen die Wahl der externen Services, die aktiviert werden dürfen.", "adblock_call": "Bitte deaktivieren Sie Ihren 'Werbeblocker' um Cookie-Einstellungen vornehmen zu können.", "reload": "Seite neu laden", diff --git a/static/tarteaucitron/lang/tarteaucitron.de.min.js b/static/tarteaucitron/lang/tarteaucitron.de.min.js index c72058c..1fb40d6 100644 --- a/static/tarteaucitron/lang/tarteaucitron.de.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.de.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Hallo! Diese Seite ist transparent und lässt Ihnen die Wahl der externen Services, die aktiviert werden dürfen.",adblock_call:"Bitte deaktivieren Sie Ihren 'Werbeblocker' um Cookie-Einstellungen vornehmen zu können.",reload:"Seite neu laden",alertBigScroll:"Durch weiterblättern,",alertBigClick:"Wenn Sie diese Webseite benutzen,",alertBig:"stimmen Sie der Benutzung von externen Diensten zu",alertBigPrivacy:"Diese Webseite verwendet 'Cookies' um Inhalte und Anzeigen zu personalisieren und zu analysieren. Bestimmen Sie, welche Dienste benutzt werden dürfen",alertSmall:"Datenschutz-Einstellungen",personalize:"Personalisieren",acceptAll:"Alle akzeptieren",close:"Schließen",closeBanner:"Cookies-Banner ausblenden",privacyUrl:"Datenschutzbestimmungen",all:"Einstellungen für alle Dienste",info:"Schutz der Privatsphäre",disclaimer:"Wenn Sie diese Dienste nutzen, erlauben Sie deren 'Cookies' und Tracking-Funktionen, die zu ihrer ordnungsgemäßen Funktion notwendig sind.",allow:"Erlauben",deny:"Ablehnen",noCookie:"Dieser Dienst nutzt keine 'Cookies'.",useCookie:"Dieser Dienst kann 'Cookies' verwenden",useCookieCurrent:"Dieser Dienst verwendet",useNoCookie:"Dieser Dienst hat keine 'Cookies' installiert.",more:"Weiter lesen",source:"Zur offiziellen Webseite",credit:"Cookie Manager von tarteaucitron.js",noServices:"Diese Website verwendet keine Cookies, die Ihrer Zustimmung bedürfen.",toggleInfoBox:"Zeige/Verberge Cookie-Einstellungen",title:"Cookie-Einstellungen",cookieDetail:"Cookie Details für",ourSite:"auf unserer Seite",modalWindow:"(modales Fenster)",newWindow:"(neues Fenster)",allowAll:"Erlaube alle Cookies",denyAll:"Verbiete alle Cookies",icon:"Cookies",fallback:"ist deaktiviert.",allowed:"erlaubt",disallowed:"nicht erlaubt",ads:{title:"Werbenetzwerke",details:"Werbenetzwerke können mit dem Verkauf von Werbeplatzierungen auf der Seite Einnahmen erhalten."},analytic:{title:"Besucher Zähldienste",details:"Die verwendeten Besucher Zähldienste generieren Statistiken die dabei helfen, die Seite zu verbessern."},social:{title:"Soziale Netzwerke",details:"Soziale Netzwerke können die Benutzbarkeit der Seite verbessern und ihren Bekanntheitsgrad erhöhen."},video:{title:"Videos",details:"Videoplattformen erlauben Videoinhalte einzublenden und die Sichtbarkeit der Seite zu erhöhen."},comment:{title:"Kommentare",details:"Kommentar Manager erleichtern die Organisation von Kommentaren und helfen dabei Spam zu verhindern."},support:{title:"Support",details:"Support Dienste erlauben es die Urheber der Seite zu kontaktieren und sie zu verbessern."},api:{title:"APIs",details:"APIs werden benutzt um Skripte zu laden, wie: Geolokalisierung, Suchmaschinen, Übersetzungen, ..."},other:{title:"Andere",details:"Dienste zum Anzeigen von Web-Inhalten."},google:{title:"Spezifische Zustimmung zu Google-Diensten",details:"Google kann Ihre Daten zur Messung der Zielgröße, Werbeleistung oder zur Bereitstellung personalisierter Anzeigen verwenden."},mandatoryTitle:"Notwendige Cookies",mandatoryText:"Diese Seite nutzt Cookies, um die Bedienung der Website zu ermöglichen, diese können nicht deaktiviert werden",save:"Speichern",ourpartners:"Unsere Partner"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Hallo! Diese Seite ist transparent und lässt Ihnen die Wahl der externen Services, die aktiviert werden dürfen.",adblock_call:"Bitte deaktivieren Sie Ihren 'Werbeblocker' um Cookie-Einstellungen vornehmen zu können.",reload:"Seite neu laden",alertBigScroll:"Durch weiterblättern,",alertBigClick:"Wenn Sie diese Webseite benutzen,",alertBig:"stimmen Sie der Benutzung von externen Diensten zu",alertBigPrivacy:"Diese Webseite verwendet 'Cookies' um Inhalte und Anzeigen zu personalisieren und zu analysieren. Bestimmen Sie, welche Dienste benutzt werden dürfen",alertSmall:"Datenschutz-Einstellungen",personalize:"Personalisieren",acceptAll:"Alle akzeptieren",close:"Schließen",closeBanner:"Cookies-Banner ausblenden",privacyUrl:"Datenschutzbestimmungen",all:"Einstellungen für alle Dienste",info:"Schutz der Privatsphäre",disclaimer:"Wenn Sie diese Dienste nutzen, erlauben Sie deren 'Cookies' und Tracking-Funktionen, die zu ihrer ordnungsgemäßen Funktion notwendig sind.",allow:"Erlauben",deny:"Ablehnen",noCookie:"Dieser Dienst nutzt keine 'Cookies'.",useCookie:"Dieser Dienst kann 'Cookies' verwenden",useCookieCurrent:"Dieser Dienst verwendet",useNoCookie:"Dieser Dienst hat keine 'Cookies' installiert.",more:"Weiter lesen",source:"Zur offiziellen Webseite",credit:"Cookie Manager von tarteaucitron.js",noServices:"Diese Website verwendet keine Cookies, die Ihrer Zustimmung bedürfen.",toggleInfoBox:"Zeige/Verberge Cookie-Einstellungen",title:"Cookie-Einstellungen",cookieDetail:"Cookie Details für",ourSite:"auf unserer Seite",modalWindow:"(modales Fenster)",newWindow:"(neues Fenster)",allowAll:"Erlaube alle Cookies",denyAll:"Verbiete alle Cookies",icon:"Cookies",fallback:"ist deaktiviert.",allowed:"erlaubt",disallowed:"nicht erlaubt",ads:{title:"Werbenetzwerke",details:"Werbenetzwerke können mit dem Verkauf von Werbeplatzierungen auf der Seite Einnahmen erhalten."},analytic:{title:"Besucher Zähldienste",details:"Die verwendeten Besucher Zähldienste generieren Statistiken die dabei helfen, die Seite zu verbessern."},social:{title:"Soziale Netzwerke",details:"Soziale Netzwerke können die Benutzbarkeit der Seite verbessern und ihren Bekanntheitsgrad erhöhen."},video:{title:"Videos",details:"Videoplattformen erlauben Videoinhalte einzublenden und die Sichtbarkeit der Seite zu erhöhen."},comment:{title:"Kommentare",details:"Kommentar Manager erleichtern die Organisation von Kommentaren und helfen dabei Spam zu verhindern."},support:{title:"Support",details:"Support Dienste erlauben es die Urheber der Seite zu kontaktieren und sie zu verbessern."},api:{title:"APIs",details:"APIs werden benutzt um Skripte zu laden, wie: Geolokalisierung, Suchmaschinen, Übersetzungen, ..."},other:{title:"Andere",details:"Dienste zum Anzeigen von Web-Inhalten."},google:{title:"Spezifische Zustimmung zu Google-Diensten",details:"Google kann Ihre Daten zur Messung der Zielgröße, Werbeleistung oder zur Bereitstellung personalisierter Anzeigen verwenden."},mandatoryTitle:"Notwendige Cookies",mandatoryText:"Diese Seite nutzt Cookies, um die Bedienung der Website zu ermöglichen, diese können nicht deaktiviert werden",save:"Speichern",ourpartners:"Unsere Partner"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.el.js b/static/tarteaucitron/lang/tarteaucitron.el.js index 9edc319..93bb47c 100644 --- a/static/tarteaucitron/lang/tarteaucitron.el.js +++ b/static/tarteaucitron/lang/tarteaucitron.el.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Γεια σας! Ο ιστότοπος αυτός σας επιτρέπει να επιλέξετε τις υπηρεσίες που παρέχονται από τρίτους που θα θέλατε να επιτρέψετε.", "adblock_call": "Παρακαλώ απενεργοποιήστε τα προγράμματα απόρριψης διαφημίσεων για να ξεκινήσετε τις τροποποιήσεις σας.", "reload": "Ανανέωση της σελίδας", diff --git a/static/tarteaucitron/lang/tarteaucitron.el.min.js b/static/tarteaucitron/lang/tarteaucitron.el.min.js index 4ea4410..eea4ba1 100644 --- a/static/tarteaucitron/lang/tarteaucitron.el.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.el.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Γεια σας! Ο ιστότοπος αυτός σας επιτρέπει να επιλέξετε τις υπηρεσίες που παρέχονται από τρίτους που θα θέλατε να επιτρέψετε.",adblock_call:"Παρακαλώ απενεργοποιήστε τα προγράμματα απόρριψης διαφημίσεων για να ξεκινήσετε τις τροποποιήσεις σας.",reload:"Ανανέωση της σελίδας",alertBigScroll:"Συνεχίζοντας την ανάγνωση (κύλιση) της σελίδας,",alertBigClick:"Αν συνεχίσετε την περιήγηση σας στον ιστότοπο,",alertBig:"επιτρέπετε όλες τις υπηρεσίες που παρέχονται από τρίτους",alertBigPrivacy:"Ο ιστότοπος αυτός χρησιμοποιεί "μπισκότα" (cookies) και σας επιτρέπει να ελέγξετε τι θέλετε να ενεργοποιήσετε",alertSmall:"Διαχείριση υπηρεσιών",personalize:"Εξατομίκευση",acceptAll:"OK, αποδοχή όλων",close:"Κλείσιμο",closeBanner:"Απόκρυψη banner cookies",privacyUrl:"Πολιτική απορρήτου",all:"Προτίμηση για όλες τις υπηρεσίες",info:"Προστασία των προσωπικών σας δεδομένων",disclaimer:"Επιτρέποντας αυτές τις υπηρεσίες που παρέχονται από τρίτους, αποδέχεστε τα "μπισκότα" (cookies) τους καθώς και τη χρήση τεχνολογιών παρακολούθησης που είναι απαραίτητες για τη λειτουργία τους.",allow:"Επέτρεψε",deny:"Απόρριψε",noCookie:"Η υπηρεσία αυτή δε χρησιμοποιεί "μπισκότα" (cookies).",useCookie:"Η υπηρεσία αυτή μπορεί να αποθηκεύσει ",useCookieCurrent:"Η υπηρεσία αυτή έχει αποθηκεύσει ",useNoCookie:"Η υπηρεσία αυτή δεν έχει αποθηκεύσει κανένα "μπισκότο" (cookie).",more:"Διαβάστε περισσότερα",source:"Δείτε τον επίσημο ιστότοπο",credit:"Cookies manager by tarteaucitron.js",noServices:"Αυτός ο ιστότοπος δεν χρησιμοποιεί κανένα cookie που απαιτεί τη συγκατάθεσή σας.",toggleInfoBox:"Προβολή/Απόκρυψη πληροφοριών για την αποθήκευση "μπισκότων" (cookies)",title:"Πίνακας διαχείρισης "Μπισκότων" (Cookies)",cookieDetail:"Λεπτομέρειες "μπισκότων" (cookies) για",ourSite:"στον ιστότοπο μας",modalWindow:"(modal παράθυρο)",newWindow:"(νέο παράθυρο)",allowAll:"Επέτρεψε όλα τα "μπισκότα" (cookies)",denyAll:"Απόρριψε όλα τα "μπισκότα" (cookies)",icon:"Cookies",fallback:"είναι απενεργοποιημένο.",allowed:"επιτρέπεται",disallowed:"απαγορεύεται",ads:{title:"Διαφημιστικό Δίκτυο",details:"Τα διαφημιστικά δίκτυα μπορούν να αποφέρουν εισόδημα πουλώντας διαφημιστικό χώρο στη σελίδα."},analytic:{title:"Μετρήσεις κοινού",details:"Οι υπηρεσίες μέτρησης κοινού χρησιμοποιούνται για τον υπολογισμό χρήσιμων στατιστικών επισκεψιμότητας του ιστοτόπου για την βελτίωση του."},social:{title:"Κοινωνικά δίκτυα",details:"Τα κοινωνικά δίκτυα μπορούν να βελτιώσουν την χρηστικότητα του ιστοτόπου και να τον προωθήσουν μέσω κοινοποιήσεων."},video:{title:"Βίντεο",details:"Υπηρεσίες διαμοιρασμού βίντεο που βοηθούν να παρουσιαστεί πλούσιο περιεχόμενο στον ιστότοπο και να αυξήσουν την αναγνωρισιμότητα του."},comment:{title:"Σχόλια",details:"Οι διαχειριστές σχολίων βοηθούν την καταχώρηση σχολίων και προστατεύουν από κακόβουλες ενέργειες."},support:{title:"Υποστήριξη",details:"Οι υποστηρικτικές υπηρεσίες σας επιτρέπουν να επικονωνείτε με την ομάδα υποστήριξης του ιστοτόπου και να βοηθήσετε στην βελτίωση του."},api:{title:"APIs",details:"Τα API χρησιμοποιούνται για την φόρτωση προγραμμάτων: αναγνώρισης τοποθεσίας, μηχανών αναζήτησης, μεταφράσεων, ..."},other:{title:"Λοιπές υπηρεσίες",details:"Υπηρεσίες που παρουσιάζουν άλλο περιεχόμενο."},google:{title:"Ειδική συγκατάθεση για τις υπηρεσίες της Google",details:"Η Google μπορεί να χρησιμοποιήσει τα δεδομένα σας για τη μέτρηση του κοινού, τη διαφημιστική απόδοση ή για να σας προσφέρει εξατομικευμένες διαφημίσεις."},mandatoryTitle:"Υποχρεωτικά cookies",mandatoryText:"Αυτός ο ιστότοπος χρησιμοποιεί cookies που είναι απαραίτητα για τη σωστή λειτουργία του και δεν μπορούν να απενεργοποιηθούν.",save:"Αποθήκευση",ourpartners:"Οι συνεργάτες μας"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Γεια σας! Ο ιστότοπος αυτός σας επιτρέπει να επιλέξετε τις υπηρεσίες που παρέχονται από τρίτους που θα θέλατε να επιτρέψετε.",adblock_call:"Παρακαλώ απενεργοποιήστε τα προγράμματα απόρριψης διαφημίσεων για να ξεκινήσετε τις τροποποιήσεις σας.",reload:"Ανανέωση της σελίδας",alertBigScroll:"Συνεχίζοντας την ανάγνωση (κύλιση) της σελίδας,",alertBigClick:"Αν συνεχίσετε την περιήγηση σας στον ιστότοπο,",alertBig:"επιτρέπετε όλες τις υπηρεσίες που παρέχονται από τρίτους",alertBigPrivacy:"Ο ιστότοπος αυτός χρησιμοποιεί "μπισκότα" (cookies) και σας επιτρέπει να ελέγξετε τι θέλετε να ενεργοποιήσετε",alertSmall:"Διαχείριση υπηρεσιών",personalize:"Εξατομίκευση",acceptAll:"OK, αποδοχή όλων",close:"Κλείσιμο",closeBanner:"Απόκρυψη banner cookies",privacyUrl:"Πολιτική απορρήτου",all:"Προτίμηση για όλες τις υπηρεσίες",info:"Προστασία των προσωπικών σας δεδομένων",disclaimer:"Επιτρέποντας αυτές τις υπηρεσίες που παρέχονται από τρίτους, αποδέχεστε τα "μπισκότα" (cookies) τους καθώς και τη χρήση τεχνολογιών παρακολούθησης που είναι απαραίτητες για τη λειτουργία τους.",allow:"Επέτρεψε",deny:"Απόρριψε",noCookie:"Η υπηρεσία αυτή δε χρησιμοποιεί "μπισκότα" (cookies).",useCookie:"Η υπηρεσία αυτή μπορεί να αποθηκεύσει ",useCookieCurrent:"Η υπηρεσία αυτή έχει αποθηκεύσει ",useNoCookie:"Η υπηρεσία αυτή δεν έχει αποθηκεύσει κανένα "μπισκότο" (cookie).",more:"Διαβάστε περισσότερα",source:"Δείτε τον επίσημο ιστότοπο",credit:"Cookies manager by tarteaucitron.js",noServices:"Αυτός ο ιστότοπος δεν χρησιμοποιεί κανένα cookie που απαιτεί τη συγκατάθεσή σας.",toggleInfoBox:"Προβολή/Απόκρυψη πληροφοριών για την αποθήκευση "μπισκότων" (cookies)",title:"Πίνακας διαχείρισης "Μπισκότων" (Cookies)",cookieDetail:"Λεπτομέρειες "μπισκότων" (cookies) για",ourSite:"στον ιστότοπο μας",modalWindow:"(modal παράθυρο)",newWindow:"(νέο παράθυρο)",allowAll:"Επέτρεψε όλα τα "μπισκότα" (cookies)",denyAll:"Απόρριψε όλα τα "μπισκότα" (cookies)",icon:"Cookies",fallback:"είναι απενεργοποιημένο.",allowed:"επιτρέπεται",disallowed:"απαγορεύεται",ads:{title:"Διαφημιστικό Δίκτυο",details:"Τα διαφημιστικά δίκτυα μπορούν να αποφέρουν εισόδημα πουλώντας διαφημιστικό χώρο στη σελίδα."},analytic:{title:"Μετρήσεις κοινού",details:"Οι υπηρεσίες μέτρησης κοινού χρησιμοποιούνται για τον υπολογισμό χρήσιμων στατιστικών επισκεψιμότητας του ιστοτόπου για την βελτίωση του."},social:{title:"Κοινωνικά δίκτυα",details:"Τα κοινωνικά δίκτυα μπορούν να βελτιώσουν την χρηστικότητα του ιστοτόπου και να τον προωθήσουν μέσω κοινοποιήσεων."},video:{title:"Βίντεο",details:"Υπηρεσίες διαμοιρασμού βίντεο που βοηθούν να παρουσιαστεί πλούσιο περιεχόμενο στον ιστότοπο και να αυξήσουν την αναγνωρισιμότητα του."},comment:{title:"Σχόλια",details:"Οι διαχειριστές σχολίων βοηθούν την καταχώρηση σχολίων και προστατεύουν από κακόβουλες ενέργειες."},support:{title:"Υποστήριξη",details:"Οι υποστηρικτικές υπηρεσίες σας επιτρέπουν να επικονωνείτε με την ομάδα υποστήριξης του ιστοτόπου και να βοηθήσετε στην βελτίωση του."},api:{title:"APIs",details:"Τα API χρησιμοποιούνται για την φόρτωση προγραμμάτων: αναγνώρισης τοποθεσίας, μηχανών αναζήτησης, μεταφράσεων, ..."},other:{title:"Λοιπές υπηρεσίες",details:"Υπηρεσίες που παρουσιάζουν άλλο περιεχόμενο."},google:{title:"Ειδική συγκατάθεση για τις υπηρεσίες της Google",details:"Η Google μπορεί να χρησιμοποιήσει τα δεδομένα σας για τη μέτρηση του κοινού, τη διαφημιστική απόδοση ή για να σας προσφέρει εξατομικευμένες διαφημίσεις."},mandatoryTitle:"Υποχρεωτικά cookies",mandatoryText:"Αυτός ο ιστότοπος χρησιμοποιεί cookies που είναι απαραίτητα για τη σωστή λειτουργία του και δεν μπορούν να απενεργοποιηθούν.",save:"Αποθήκευση",ourpartners:"Οι συνεργάτες μας"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.en.js b/static/tarteaucitron/lang/tarteaucitron.en.js index 39bcd6c..a2fbfb7 100644 --- a/static/tarteaucitron/lang/tarteaucitron.en.js +++ b/static/tarteaucitron/lang/tarteaucitron.en.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Hello! This site is transparent and lets you choose the 3rd party services you want to allow.", "adblock_call": "Please disable your adblocker to start customizing.", "reload": "Refresh the page", diff --git a/static/tarteaucitron/lang/tarteaucitron.en.min.js b/static/tarteaucitron/lang/tarteaucitron.en.min.js index 92b48c0..dbb08b1 100644 --- a/static/tarteaucitron/lang/tarteaucitron.en.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.en.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Hello! This site is transparent and lets you choose the 3rd party services you want to allow.",adblock_call:"Please disable your adblocker to start customizing.",reload:"Refresh the page",alertBigScroll:"By continuing to scroll,",alertBigClick:"If you continue to browse this website,",alertBig:"you are allowing all third-party services",alertBigPrivacy:"This site uses cookies and gives you control over what you want to activate",alertSmall:"Manage services",personalize:"Personalize",acceptAll:"OK, accept all",close:"Close",closeBanner:"Hide cookie banner",privacyUrl:"Privacy policy",all:"Preference for all services",info:"Protecting your privacy",disclaimer:"By allowing these third party services, you accept their cookies and the use of tracking technologies necessary for their proper functioning.",allow:"Allow",deny:"Deny",noCookie:"This service does not use cookie.",useCookie:"This service can install",useCookieCurrent:"This service has installed",useNoCookie:"This service has not installed any cookie.",more:"Read more",source:"View the official website",credit:"Cookies manager by tarteaucitron.js",noServices:"This website does not use any cookie requiring your consent.",toggleInfoBox:"Show/hide informations about cookie storage",title:"Cookies management panel",cookieDetail:"Cookie detail for",ourSite:"on our site",modalWindow:"(modal window)",newWindow:"(new window)",allowAll:"Allow all cookies",denyAll:"Deny all cookies",icon:"Cookies",fallback:"is disabled.",allowed:"allowed",disallowed:"disallowed",ads:{title:"Advertising network",details:"Ad networks can generate revenue by selling advertising space on the site."},analytic:{title:"Audience measurement",details:"The audience measurement services used to generate useful statistics attendance to improve the site."},social:{title:"Social networks",details:"Social networks can improve the usability of the site and help to promote it via the shares."},video:{title:"Videos",details:"Video sharing services help to add rich media on the site and increase its visibility."},comment:{title:"Comments",details:"Comments managers facilitate the filing of comments and fight against spam."},support:{title:"Support",details:"Support services allow you to get in touch with the site team and help to improve it."},api:{title:"APIs",details:"APIs are used to load scripts: geolocation, search engines, translations, ..."},other:{title:"Other",details:"Services to display web content."},google:{title:"Specific consent for Google services",details:"Google may use your data for audience measurement, advertising performance, or to offer you personalized ads."},mandatoryTitle:"Mandatory cookies",mandatoryText:"This site uses cookies necessary for its proper functioning which cannot be deactivated.",save:"Save",ourpartners:"Our Partners"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Hello! This site is transparent and lets you choose the 3rd party services you want to allow.",adblock_call:"Please disable your adblocker to start customizing.",reload:"Refresh the page",alertBigScroll:"By continuing to scroll,",alertBigClick:"If you continue to browse this website,",alertBig:"you are allowing all third-party services",alertBigPrivacy:"This site uses cookies and gives you control over what you want to activate",alertSmall:"Manage services",personalize:"Personalize",acceptAll:"OK, accept all",close:"Close",closeBanner:"Hide cookie banner",privacyUrl:"Privacy policy",all:"Preference for all services",info:"Protecting your privacy",disclaimer:"By allowing these third party services, you accept their cookies and the use of tracking technologies necessary for their proper functioning.",allow:"Allow",deny:"Deny",noCookie:"This service does not use cookie.",useCookie:"This service can install",useCookieCurrent:"This service has installed",useNoCookie:"This service has not installed any cookie.",more:"Read more",source:"View the official website",credit:"Cookies manager by tarteaucitron.js",noServices:"This website does not use any cookie requiring your consent.",toggleInfoBox:"Show/hide informations about cookie storage",title:"Cookies management panel",cookieDetail:"Cookie detail for",ourSite:"on our site",modalWindow:"(modal window)",newWindow:"(new window)",allowAll:"Allow all cookies",denyAll:"Deny all cookies",icon:"Cookies",fallback:"is disabled.",allowed:"allowed",disallowed:"disallowed",ads:{title:"Advertising network",details:"Ad networks can generate revenue by selling advertising space on the site."},analytic:{title:"Audience measurement",details:"The audience measurement services used to generate useful statistics attendance to improve the site."},social:{title:"Social networks",details:"Social networks can improve the usability of the site and help to promote it via the shares."},video:{title:"Videos",details:"Video sharing services help to add rich media on the site and increase its visibility."},comment:{title:"Comments",details:"Comments managers facilitate the filing of comments and fight against spam."},support:{title:"Support",details:"Support services allow you to get in touch with the site team and help to improve it."},api:{title:"APIs",details:"APIs are used to load scripts: geolocation, search engines, translations, ..."},other:{title:"Other",details:"Services to display web content."},google:{title:"Specific consent for Google services",details:"Google may use your data for audience measurement, advertising performance, or to offer you personalized ads."},mandatoryTitle:"Mandatory cookies",mandatoryText:"This site uses cookies necessary for its proper functioning which cannot be deactivated.",save:"Save",ourpartners:"Our Partners"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.es.js b/static/tarteaucitron/lang/tarteaucitron.es.js index 076765e..626abb9 100644 --- a/static/tarteaucitron/lang/tarteaucitron.es.js +++ b/static/tarteaucitron/lang/tarteaucitron.es.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "¡Hola! Este sitio web es transparente y te da la opción de activar los servicios de terceros.", "adblock_call": "Por favor deshabilita tu AdBlocker para empezar a personalizar los servicios.", "reload": "Actualizar esta página", diff --git a/static/tarteaucitron/lang/tarteaucitron.es.min.js b/static/tarteaucitron/lang/tarteaucitron.es.min.js index 4ba7be2..036e6df 100644 --- a/static/tarteaucitron/lang/tarteaucitron.es.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.es.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"¡Hola! Este sitio web es transparente y te da la opción de activar los servicios de terceros.",adblock_call:"Por favor deshabilita tu AdBlocker para empezar a personalizar los servicios.",reload:"Actualizar esta página",alertBigScroll:"Al continuar desplazándote,",alertBigClick:"Si continuas navegando por este sitio web,",alertBig:"estás permitiendo servicios terceros",alertBigPrivacy:"Este sitio web usa cookies y te permite controlar las que deseas activar",alertSmall:"Gestionar servicios",personalize:"Personalizar",acceptAll:"OK, aceptar todas",close:"Cerrar",closeBanner:"Ocultar la banner de cookies",privacyUrl:"Política de privacidad",all:"Ajustes para todos los servicios",info:"Protegiendo tu privacidad",disclaimer:"Aceptando estos servicios de terceros, estás aceptando sus cookies y el uso de tecnologías de rastreo necesarias para su correcto funcionamiento.",allow:"Permitir",deny:"Denegar",noCookie:"Este servicio no usa cookies.",useCookie:"Este servicio puede instalar",useCookieCurrent:"Este servicio ha instalado",useNoCookie:"Este servicio no ha instalado ninguna cookie.",more:"Leer más",source:"Ver sitio web oficial",credit:"Gestor de cookies realizado por tarteaucitron.js",noServices:"Este sitio web no utiliza ninguna cookie que requiera su consentimiento.",toggleInfoBox:"Mostrar/ocultar información sobre almacenamiento de cookies",title:"Panel de gestión de cookies",cookieDetail:"Detalles de las cookies para",ourSite:"en nuestra web",modalWindow:"(ventana modal)",newWindow:"(ventana nueva)",allowAll:"Permitir todas las cookies",denyAll:"Denegar todas las cookies",icon:"Cookies",fallback:"está deshabilitado.",allowed:"permitido",disallowed:"rechazado",ads:{title:"Red de publicidad",details:"Las redes publicitarias pueden generar ingresos mediante la venta de espacios publicitarios en el sitio."},analytic:{title:"Medición de audiencia",details:"Los servicios de medición de audiencia se usan para generar estadísticas útiles para mejorar el sitio."},social:{title:"Redes sociales",details:"Las redes sociales pueden aumentar la usabilidad del sitio web y ayudar a promoverlo a través de la contribución."},video:{title:"Videos",details:"Los servicios para compartir videos ayudan a añadir contenido enriquecido en el sitio web y aumentar su visibilidad."},comment:{title:"Comentarios",details:"El gestor de comentarios facilita la clasificación de comentarios y luchar contra spam."},support:{title:"Soporte",details:"Los servicios de soporte te permiten contactar con el sitio web y ayudar a mejorarlo."},api:{title:"APIs",details:"APIs se utilizan para cargar scripts: geolocalización, motor de búsqueda, traducciones, ..."},other:{title:"Otro",details:"Servicios para mostrar contenido web."},google:{title:"Consentimiento específico para los servicios de Google",details:"Google puede utilizar tus datos para la medición de audiencia, rendimiento publicitario o para ofrecerte anuncios personalizados."},mandatoryTitle:"Cookies obligatorias",mandatoryText:"Este sitio utiliza cookies necesarias para su correcto funcionamiento que no se pueden desactivar.",save:"Guardar",ourpartners:"Nuestros socios"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"¡Hola! Este sitio web es transparente y te da la opción de activar los servicios de terceros.",adblock_call:"Por favor deshabilita tu AdBlocker para empezar a personalizar los servicios.",reload:"Actualizar esta página",alertBigScroll:"Al continuar desplazándote,",alertBigClick:"Si continuas navegando por este sitio web,",alertBig:"estás permitiendo servicios terceros",alertBigPrivacy:"Este sitio web usa cookies y te permite controlar las que deseas activar",alertSmall:"Gestionar servicios",personalize:"Personalizar",acceptAll:"OK, aceptar todas",close:"Cerrar",closeBanner:"Ocultar la banner de cookies",privacyUrl:"Política de privacidad",all:"Ajustes para todos los servicios",info:"Protegiendo tu privacidad",disclaimer:"Aceptando estos servicios de terceros, estás aceptando sus cookies y el uso de tecnologías de rastreo necesarias para su correcto funcionamiento.",allow:"Permitir",deny:"Denegar",noCookie:"Este servicio no usa cookies.",useCookie:"Este servicio puede instalar",useCookieCurrent:"Este servicio ha instalado",useNoCookie:"Este servicio no ha instalado ninguna cookie.",more:"Leer más",source:"Ver sitio web oficial",credit:"Gestor de cookies realizado por tarteaucitron.js",noServices:"Este sitio web no utiliza ninguna cookie que requiera su consentimiento.",toggleInfoBox:"Mostrar/ocultar información sobre almacenamiento de cookies",title:"Panel de gestión de cookies",cookieDetail:"Detalles de las cookies para",ourSite:"en nuestra web",modalWindow:"(ventana modal)",newWindow:"(ventana nueva)",allowAll:"Permitir todas las cookies",denyAll:"Denegar todas las cookies",icon:"Cookies",fallback:"está deshabilitado.",allowed:"permitido",disallowed:"rechazado",ads:{title:"Red de publicidad",details:"Las redes publicitarias pueden generar ingresos mediante la venta de espacios publicitarios en el sitio."},analytic:{title:"Medición de audiencia",details:"Los servicios de medición de audiencia se usan para generar estadísticas útiles para mejorar el sitio."},social:{title:"Redes sociales",details:"Las redes sociales pueden aumentar la usabilidad del sitio web y ayudar a promoverlo a través de la contribución."},video:{title:"Videos",details:"Los servicios para compartir videos ayudan a añadir contenido enriquecido en el sitio web y aumentar su visibilidad."},comment:{title:"Comentarios",details:"El gestor de comentarios facilita la clasificación de comentarios y luchar contra spam."},support:{title:"Soporte",details:"Los servicios de soporte te permiten contactar con el sitio web y ayudar a mejorarlo."},api:{title:"APIs",details:"APIs se utilizan para cargar scripts: geolocalización, motor de búsqueda, traducciones, ..."},other:{title:"Otro",details:"Servicios para mostrar contenido web."},google:{title:"Consentimiento específico para los servicios de Google",details:"Google puede utilizar tus datos para la medición de audiencia, rendimiento publicitario o para ofrecerte anuncios personalizados."},mandatoryTitle:"Cookies obligatorias",mandatoryText:"Este sitio utiliza cookies necesarias para su correcto funcionamiento que no se pueden desactivar.",save:"Guardar",ourpartners:"Nuestros socios"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.et.js b/static/tarteaucitron/lang/tarteaucitron.et.js index f712d0a..d5624f2 100644 --- a/static/tarteaucitron/lang/tarteaucitron.et.js +++ b/static/tarteaucitron/lang/tarteaucitron.et.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Tere! See lehekülg on läbipaistev ja võimaldab Teil valida kolmandate osapoolte teenuseid, mida soovite lubada.", "adblock_call": "Kohandamise alustamiseks palun keelake oma reklaamiblokeerija.", "reload": "Värskendage lehekülge", diff --git a/static/tarteaucitron/lang/tarteaucitron.et.min.js b/static/tarteaucitron/lang/tarteaucitron.et.min.js index 96776ab..7b93f3c 100644 --- a/static/tarteaucitron/lang/tarteaucitron.et.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.et.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Tere! See lehekülg on läbipaistev ja võimaldab Teil valida kolmandate osapoolte teenuseid, mida soovite lubada.",adblock_call:"Kohandamise alustamiseks palun keelake oma reklaamiblokeerija.",reload:"Värskendage lehekülge",alertBigScroll:"Kerimist jätkates,",alertBigClick:"Kui jätkate selle veebisaidi sirvimist,",alertBig:"lubate kõik kolmandate osapoolte teenused",alertBigPrivacy:"See lehekülg kasutab küpsiseid ja annab teile kontrolli selle üle, mida soovite aktiveerida",alertSmall:"Teenuste haldamine",personalize:"Isikupärasta",acceptAll:"OK, nõustu kõigiga",close:"Sulge",closeBanner:"Peida küpsiste bänner",privacyUrl:"Privaatsuspoliitika",all:"Eelistus kõikidele teenustele",info:"Teie privaatsuse kaitsmine",disclaimer:"Kolmandate osapoolte teenuste lubamisel nõustute nende küpsistega ja nende nõuetekohaseks toimimiseks vajalike jälgimistehnoloogiate kasutamisega.",allow:"Luba",deny:"Keeldu",noCookie:"See teenus ei kasuta küpsiseid.",useCookie:"Seda teenust saab installida",useCookieCurrent:"See teenus on installitud",useNoCookie:"See teenus ei ole installinud ühtegi küpsist.",more:"Loe rohkem",source:"Vaadake ametlikku veebilehekülge",credit:"Küpsiste haldur tarteaucitron.js",noServices:"See veebisait ei kasuta küpsiseid, mis nõuavad teie nõusolekut.",toggleInfoBox:"Kuva/peida teave küpsiste salvestamise kohta",title:"Küpsiste halduspaneel",cookieDetail:"Küpsise üksikasjad",ourSite:"meie leheküljel",modalWindow:"(modaalne aken)",newWindow:"(uus aken)",allowAll:"Luba kõik küpsised",denyAll:"Keela kõik küpsised",icon:"Küpsised",fallback:"on keelatud.",allowed:"lubatud",disallowed:"keelatud",ads:{title:"Reklaamvõrgustik",details:"Reklaamivõrgustikud saavad veebileheküljel reklaamipinda müües tulu teenida."},analytic:{title:"Vaatajaskonna mõõtmine",details:"Vaatajaskonna mõõtmise teenuseid kasutati lehekülje täiustamiseks kasuliku külastatavuse statistika saamiseks."},social:{title:"Sotsiaalvõrgustikud",details:"Sotsiaalvõrgustikud võivad parandada lehekülje kasutatavust ja aidata seda jagamiste kaudu reklaamida."},video:{title:"Videod",details:"Videojagamisteenused aitavad leheküljele lisada rikasmeediat ja suurendada selle nähtavust."},comment:{title:"Kommentaarid",details:"Kommentaarihaldurid hõlbustavad kommentaaride esitamist ja võitlevad rämpsposti vastu."},support:{title:"Tugi",details:"Tugiteenused võimaldavad teil lehekülje meeskonnaga ühendust võtta ja aidata seda täiustada."},api:{title:"API-d",details:"API-sid kasutatakse skriptide laadimiseks: geolokatsiooniks, otsingumootorites, tõlgetes, ..."},other:{title:"Muu",details:"Teenused veebisisu kuvamiseks."},google:{title:"Google'i teenuste konkreetne nõusolek",details:"Google võib teie andmeid kasutada sihtrühma mõõtmiseks, reklaamide tulemuslikkuse hindamiseks või teile isikupäraste reklaamide pakkumiseks."},mandatoryTitle:"Kohustuslikud küpsised",mandatoryText:"See lehekülg kasutab nõuetekohaseks toimimiseks vajalikke küpsiseid, mida ei saa deaktiveerida.",save:"Salvesta",ourpartners:"Meie partnerid"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Tere! See lehekülg on läbipaistev ja võimaldab Teil valida kolmandate osapoolte teenuseid, mida soovite lubada.",adblock_call:"Kohandamise alustamiseks palun keelake oma reklaamiblokeerija.",reload:"Värskendage lehekülge",alertBigScroll:"Kerimist jätkates,",alertBigClick:"Kui jätkate selle veebisaidi sirvimist,",alertBig:"lubate kõik kolmandate osapoolte teenused",alertBigPrivacy:"See lehekülg kasutab küpsiseid ja annab teile kontrolli selle üle, mida soovite aktiveerida",alertSmall:"Teenuste haldamine",personalize:"Isikupärasta",acceptAll:"OK, nõustu kõigiga",close:"Sulge",closeBanner:"Peida küpsiste bänner",privacyUrl:"Privaatsuspoliitika",all:"Eelistus kõikidele teenustele",info:"Teie privaatsuse kaitsmine",disclaimer:"Kolmandate osapoolte teenuste lubamisel nõustute nende küpsistega ja nende nõuetekohaseks toimimiseks vajalike jälgimistehnoloogiate kasutamisega.",allow:"Luba",deny:"Keeldu",noCookie:"See teenus ei kasuta küpsiseid.",useCookie:"Seda teenust saab installida",useCookieCurrent:"See teenus on installitud",useNoCookie:"See teenus ei ole installinud ühtegi küpsist.",more:"Loe rohkem",source:"Vaadake ametlikku veebilehekülge",credit:"Küpsiste haldur tarteaucitron.js",noServices:"See veebisait ei kasuta küpsiseid, mis nõuavad teie nõusolekut.",toggleInfoBox:"Kuva/peida teave küpsiste salvestamise kohta",title:"Küpsiste halduspaneel",cookieDetail:"Küpsise üksikasjad",ourSite:"meie leheküljel",modalWindow:"(modaalne aken)",newWindow:"(uus aken)",allowAll:"Luba kõik küpsised",denyAll:"Keela kõik küpsised",icon:"Küpsised",fallback:"on keelatud.",allowed:"lubatud",disallowed:"keelatud",ads:{title:"Reklaamvõrgustik",details:"Reklaamivõrgustikud saavad veebileheküljel reklaamipinda müües tulu teenida."},analytic:{title:"Vaatajaskonna mõõtmine",details:"Vaatajaskonna mõõtmise teenuseid kasutati lehekülje täiustamiseks kasuliku külastatavuse statistika saamiseks."},social:{title:"Sotsiaalvõrgustikud",details:"Sotsiaalvõrgustikud võivad parandada lehekülje kasutatavust ja aidata seda jagamiste kaudu reklaamida."},video:{title:"Videod",details:"Videojagamisteenused aitavad leheküljele lisada rikasmeediat ja suurendada selle nähtavust."},comment:{title:"Kommentaarid",details:"Kommentaarihaldurid hõlbustavad kommentaaride esitamist ja võitlevad rämpsposti vastu."},support:{title:"Tugi",details:"Tugiteenused võimaldavad teil lehekülje meeskonnaga ühendust võtta ja aidata seda täiustada."},api:{title:"API-d",details:"API-sid kasutatakse skriptide laadimiseks: geolokatsiooniks, otsingumootorites, tõlgetes, ..."},other:{title:"Muu",details:"Teenused veebisisu kuvamiseks."},google:{title:"Google'i teenuste konkreetne nõusolek",details:"Google võib teie andmeid kasutada sihtrühma mõõtmiseks, reklaamide tulemuslikkuse hindamiseks või teile isikupäraste reklaamide pakkumiseks."},mandatoryTitle:"Kohustuslikud küpsised",mandatoryText:"See lehekülg kasutab nõuetekohaseks toimimiseks vajalikke küpsiseid, mida ei saa deaktiveerida.",save:"Salvesta",ourpartners:"Meie partnerid"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.fi.js b/static/tarteaucitron/lang/tarteaucitron.fi.js index 53c3193..35aaf98 100644 --- a/static/tarteaucitron/lang/tarteaucitron.fi.js +++ b/static/tarteaucitron/lang/tarteaucitron.fi.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Hei! Tämä sivusto antaa sinun valita ja hallita kolmansien osapuolten asettamia evästeitä.", "adblock_call": "Estä adblocker muuttaaksesi asetuksia.", "reload": "Päivitä sivu", diff --git a/static/tarteaucitron/lang/tarteaucitron.fi.min.js b/static/tarteaucitron/lang/tarteaucitron.fi.min.js index 8955a0f..417893c 100644 --- a/static/tarteaucitron/lang/tarteaucitron.fi.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.fi.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Hei! Tämä sivusto antaa sinun valita ja hallita kolmansien osapuolten asettamia evästeitä.",adblock_call:"Estä adblocker muuttaaksesi asetuksia.",reload:"Päivitä sivu",alertBigScroll:"Jatkamalla selailua,",alertBigClick:"Jatkamalla tämän sivuston selailua,",alertBig:"hyväksyt kolmansien osapuolien tarjoamia palveluita",alertBigPrivacy:"Tämä sivusto käyttää evästeitä ja antaa sinun hallita niitä.",alertSmall:"Hallinnoi palveluja",acceptAll:"OK, hyväksy kaikki",personalize:"Personoi",close:"Sulje",closeBanner:"Piilota evästebanneri",privacyUrl:"Tietosuoja",all:"Kaikkien palveluiden valinta",info:"Yksityisyyden suojaaminen",disclaimer:"Hyväksymällä kolmansien osapuolten palvelut, hyväksyt toiminnan kannalta tarpeellisten evästeiden ja seurantateknologioiden käytön.",allow:"Hyväksy",deny:"Kiellä",noCookie:"Tämä palvelu ei käytä evästeitä",useCookie:"Tämä palvelu voidaan asentaa",useCookieCurrent:"Tämä palvelu on asennettu",useNoCookie:"Tämä palvelu ei ole asentanut evästeitä",more:"Lue lisää",source:"Katso virallinen nettisivu",credit:"Evästeiden hallinta: tarteaucitron.js",noServices:"Tämä sivusto ei käytä evästeitä, jotka vaativat suostumustasi.",toggleInfoBox:"Näytä/piilota tiedot evästeistä ja niiden säilytyksestä",title:"Evästeiden hallintapaneeli",cookieDetail:"Evästetiedot",ourSite:"sivustollamme",modalWindow:"(modaalinen ikkuna)",newWindow:"uusi ikkuna",allowAll:"Hyväksy kaikki evästeet",denyAll:"Kiellä kaikki evästeet",icon:"Cookies",fallback:"hylätty.",allowed:"sallittu",disallowed:"kielletty",ads:{title:"Mainosverkosto",details:"Mainosverkostot saattavat saada tuloja myymällä mainostilaa sivustolla."},analytic:{title:"Yleisön mittaaminen",details:"Yleisömittauspalveluja käytetään kävijätilastojen tuottamiseen, joista on hyötyä sivuston parantamisessa."},social:{title:"Sosiaaliset verkostot",details:"Sosiaaliset verkostot voivat helpottaa sivuston käytettävyyttä ja mainontaa"},video:{title:"Videot",details:"Videoiden toistopalvelut auttavat rikastamaan sivuston markkinointia ja kasvattaa sen näkyvyyttä"},comment:{title:"Kommentit",details:"Kommentoinnin ylläpito helpottaa kommenttien arkistointia ja roskapostin hallintaa."},support:{title:"Tuki",details:"Ohjelmointirajapintoja käytetään eri ohjelmistojen, kuten hakukoneiden, sijaintien tai käännösten, lataamiseen."},api:{title:"Ohjelmointirajapinnat",details:"Ohjelmointirajapintoja käytetään eri ohjelmistojen, kuten hakukoneiden, sijaintien tai käännösten, lataamiseen,..."},other:{title:"Muut",details:"Palvelut web-sisältöjen näyttämiseen."},google:{title:"Erityinen suostumus Googlen palveluille",details:"Google voi käyttää tietojasi yleisön mittaamiseen, mainosvaikutusten arviointiin tai tarjotakseen sinulle personoituja mainoksia."},mandatoryTitle:"Tarpeelliset evästeet",mandatoryText:"Tämä sivusto käyttää evästeitä, jotka ovat välttämättömiä sen asianmukaisen toiminnan kannalta. Niitä ei voi poistaa käytöstä.",save:"Tallenna",ourpartners:"Kumppanimme"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Hei! Tämä sivusto antaa sinun valita ja hallita kolmansien osapuolten asettamia evästeitä.",adblock_call:"Estä adblocker muuttaaksesi asetuksia.",reload:"Päivitä sivu",alertBigScroll:"Jatkamalla selailua,",alertBigClick:"Jatkamalla tämän sivuston selailua,",alertBig:"hyväksyt kolmansien osapuolien tarjoamia palveluita",alertBigPrivacy:"Tämä sivusto käyttää evästeitä ja antaa sinun hallita niitä.",alertSmall:"Hallinnoi palveluja",acceptAll:"OK, hyväksy kaikki",personalize:"Personoi",close:"Sulje",closeBanner:"Piilota evästebanneri",privacyUrl:"Tietosuoja",all:"Kaikkien palveluiden valinta",info:"Yksityisyyden suojaaminen",disclaimer:"Hyväksymällä kolmansien osapuolten palvelut, hyväksyt toiminnan kannalta tarpeellisten evästeiden ja seurantateknologioiden käytön.",allow:"Hyväksy",deny:"Kiellä",noCookie:"Tämä palvelu ei käytä evästeitä",useCookie:"Tämä palvelu voidaan asentaa",useCookieCurrent:"Tämä palvelu on asennettu",useNoCookie:"Tämä palvelu ei ole asentanut evästeitä",more:"Lue lisää",source:"Katso virallinen nettisivu",credit:"Evästeiden hallinta: tarteaucitron.js",noServices:"Tämä sivusto ei käytä evästeitä, jotka vaativat suostumustasi.",toggleInfoBox:"Näytä/piilota tiedot evästeistä ja niiden säilytyksestä",title:"Evästeiden hallintapaneeli",cookieDetail:"Evästetiedot",ourSite:"sivustollamme",modalWindow:"(modaalinen ikkuna)",newWindow:"uusi ikkuna",allowAll:"Hyväksy kaikki evästeet",denyAll:"Kiellä kaikki evästeet",icon:"Cookies",fallback:"hylätty.",allowed:"sallittu",disallowed:"kielletty",ads:{title:"Mainosverkosto",details:"Mainosverkostot saattavat saada tuloja myymällä mainostilaa sivustolla."},analytic:{title:"Yleisön mittaaminen",details:"Yleisömittauspalveluja käytetään kävijätilastojen tuottamiseen, joista on hyötyä sivuston parantamisessa."},social:{title:"Sosiaaliset verkostot",details:"Sosiaaliset verkostot voivat helpottaa sivuston käytettävyyttä ja mainontaa"},video:{title:"Videot",details:"Videoiden toistopalvelut auttavat rikastamaan sivuston markkinointia ja kasvattaa sen näkyvyyttä"},comment:{title:"Kommentit",details:"Kommentoinnin ylläpito helpottaa kommenttien arkistointia ja roskapostin hallintaa."},support:{title:"Tuki",details:"Ohjelmointirajapintoja käytetään eri ohjelmistojen, kuten hakukoneiden, sijaintien tai käännösten, lataamiseen."},api:{title:"Ohjelmointirajapinnat",details:"Ohjelmointirajapintoja käytetään eri ohjelmistojen, kuten hakukoneiden, sijaintien tai käännösten, lataamiseen,..."},other:{title:"Muut",details:"Palvelut web-sisältöjen näyttämiseen."},google:{title:"Erityinen suostumus Googlen palveluille",details:"Google voi käyttää tietojasi yleisön mittaamiseen, mainosvaikutusten arviointiin tai tarjotakseen sinulle personoituja mainoksia."},mandatoryTitle:"Tarpeelliset evästeet",mandatoryText:"Tämä sivusto käyttää evästeitä, jotka ovat välttämättömiä sen asianmukaisen toiminnan kannalta. Niitä ei voi poistaa käytöstä.",save:"Tallenna",ourpartners:"Kumppanimme"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.fr.js b/static/tarteaucitron/lang/tarteaucitron.fr.js index 945e463..f516dbb 100644 --- a/static/tarteaucitron/lang/tarteaucitron.fr.js +++ b/static/tarteaucitron/lang/tarteaucitron.fr.js @@ -2,7 +2,7 @@ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Bonjour! Ce site joue la transparence et vous donne le choix des services tiers à activer.", "adblock_call": "Merci de désactiver votre adblocker pour commencer la personnalisation.", "reload": "Recharger la page", diff --git a/static/tarteaucitron/lang/tarteaucitron.fr.min.js b/static/tarteaucitron/lang/tarteaucitron.fr.min.js index fecdb6b..7e4780f 100644 --- a/static/tarteaucitron/lang/tarteaucitron.fr.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.fr.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Bonjour! Ce site joue la transparence et vous donne le choix des services tiers à activer.",adblock_call:"Merci de désactiver votre adblocker pour commencer la personnalisation.",reload:"Recharger la page",alertBigScroll:"En continuant de défiler,",alertBigClick:"En poursuivant votre navigation,",alertBig:"vous acceptez l'utilisation de services tiers pouvant installer des cookies",alertBigPrivacy:"Ce site utilise des cookies et vous donne le contrôle sur ceux que vous souhaitez activer",alertSmall:"Gestion des services",acceptAll:"Tout accepter",personalize:"Personnaliser",close:"Fermer",closeBanner:"Masquer le bandeau des cookies",privacyUrl:"Politique de confidentialité",all:"Préférences pour tous les services",info:"Protection de votre vie privée",disclaimer:"En autorisant ces services tiers, vous acceptez le dépôt et la lecture de cookies et l'utilisation de technologies de suivi nécessaires à leur bon fonctionnement.",allow:"Autoriser",deny:"Interdire",noCookie:"Ce service ne dépose aucun cookie.",useCookie:"Ce service peut déposer",useCookieCurrent:"Ce service a déposé",useNoCookie:"Ce service n'a déposé aucun cookie.",more:"En savoir plus",source:"Voir le site officiel",credit:"Gestion des cookies par tarteaucitron.js",noServices:"Ce site n'utilise aucun cookie nécessitant votre consentement.",toggleInfoBox:"Afficher/masquer les informations sur le stockage des cookies",title:"Panneau de gestion des cookies",cookieDetail:"Détail des cookies",ourSite:"sur notre site",modalWindow:"(fenêtre modale)",newWindow:"(nouvelle fenêtre)",allowAll:"Tout accepter",denyAll:"Tout refuser",icon:"Cookies",fallback:"est désactivé.",allowed:"autorisé",disallowed:"interdit",ads:{title:"Régies publicitaires",details:"Les régies publicitaires permettent de générer des revenus en commercialisant les espaces publicitaires du site."},analytic:{title:"Mesure d'audience",details:"Les services de mesure d'audience permettent de générer des statistiques de fréquentation utiles à l'amélioration du site."},social:{title:"Réseaux sociaux",details:"Les réseaux sociaux permettent d'améliorer la convivialité du site et aident à sa promotion via les partages."},video:{title:"Vidéos",details:"Les services de partage de vidéo permettent d'enrichir le site de contenu multimédia et augmentent sa visibilité."},comment:{title:"Commentaires",details:"Les gestionnaires de commentaires facilitent le dépôt de vos commentaires et luttent contre le spam."},support:{title:"Support",details:"Les services de support vous permettent d'entrer en contact avec l'équipe du site et d'aider à son amélioration."},api:{title:"APIs",details:"Les APIs permettent de charger des scripts : géolocalisation, moteurs de recherche, traductions, ..."},other:{title:"Autre",details:"Services visant à afficher du contenu web."},google:{title:"Consentement spécifique aux services Google",details:"Google peut utiliser vos données pour la mesure d'audience, la performance publicitaire ou pour vous proposer des annonces personnalisées."},mandatoryTitle:"Cookies obligatoires",mandatoryText:"Ce site utilise des cookies nécessaires à son bon fonctionnement. Ils ne peuvent pas être désactivés.",save:"Enregistrer",ourpartners:"Nos partenaires"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Bonjour! Ce site joue la transparence et vous donne le choix des services tiers à activer.",adblock_call:"Merci de désactiver votre adblocker pour commencer la personnalisation.",reload:"Recharger la page",alertBigScroll:"En continuant de défiler,",alertBigClick:"En poursuivant votre navigation,",alertBig:"vous acceptez l'utilisation de services tiers pouvant installer des cookies",alertBigPrivacy:"Ce site utilise des cookies et vous donne le contrôle sur ceux que vous souhaitez activer",alertSmall:"Gestion des services",acceptAll:"Tout accepter",personalize:"Personnaliser",close:"Fermer",closeBanner:"Masquer le bandeau des cookies",privacyUrl:"Politique de confidentialité",all:"Préférences pour tous les services",info:"Protection de votre vie privée",disclaimer:"En autorisant ces services tiers, vous acceptez le dépôt et la lecture de cookies et l'utilisation de technologies de suivi nécessaires à leur bon fonctionnement.",allow:"Autoriser",deny:"Interdire",noCookie:"Ce service ne dépose aucun cookie.",useCookie:"Ce service peut déposer",useCookieCurrent:"Ce service a déposé",useNoCookie:"Ce service n'a déposé aucun cookie.",more:"En savoir plus",source:"Voir le site officiel",credit:"Gestion des cookies par tarteaucitron.js",noServices:"Ce site n'utilise aucun cookie nécessitant votre consentement.",toggleInfoBox:"Afficher/masquer les informations sur le stockage des cookies",title:"Panneau de gestion des cookies",cookieDetail:"Détail des cookies",ourSite:"sur notre site",modalWindow:"(fenêtre modale)",newWindow:"(nouvelle fenêtre)",allowAll:"Tout accepter",denyAll:"Tout refuser",icon:"Cookies",fallback:"est désactivé.",allowed:"autorisé",disallowed:"interdit",ads:{title:"Régies publicitaires",details:"Les régies publicitaires permettent de générer des revenus en commercialisant les espaces publicitaires du site."},analytic:{title:"Mesure d'audience",details:"Les services de mesure d'audience permettent de générer des statistiques de fréquentation utiles à l'amélioration du site."},social:{title:"Réseaux sociaux",details:"Les réseaux sociaux permettent d'améliorer la convivialité du site et aident à sa promotion via les partages."},video:{title:"Vidéos",details:"Les services de partage de vidéo permettent d'enrichir le site de contenu multimédia et augmentent sa visibilité."},comment:{title:"Commentaires",details:"Les gestionnaires de commentaires facilitent le dépôt de vos commentaires et luttent contre le spam."},support:{title:"Support",details:"Les services de support vous permettent d'entrer en contact avec l'équipe du site et d'aider à son amélioration."},api:{title:"APIs",details:"Les APIs permettent de charger des scripts : géolocalisation, moteurs de recherche, traductions, ..."},other:{title:"Autre",details:"Services visant à afficher du contenu web."},google:{title:"Consentement spécifique aux services Google",details:"Google peut utiliser vos données pour la mesure d'audience, la performance publicitaire ou pour vous proposer des annonces personnalisées."},mandatoryTitle:"Cookies obligatoires",mandatoryText:"Ce site utilise des cookies nécessaires à son bon fonctionnement. Ils ne peuvent pas être désactivés.",save:"Enregistrer",ourpartners:"Nos partenaires"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.hr.js b/static/tarteaucitron/lang/tarteaucitron.hr.js index 1118344..42c990b 100644 --- a/static/tarteaucitron/lang/tarteaucitron.hr.js +++ b/static/tarteaucitron/lang/tarteaucitron.hr.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Pozdrav! Ova stranica je transparentna i omogućuje vam odabir usluga trećih strana koje želite omogućiti.", "adblock_call": "Molimo vas da onemogućite svoj adblocker kako biste započeli prilagodbu.", "reload": "Osvježite stranicu", diff --git a/static/tarteaucitron/lang/tarteaucitron.hr.min.js b/static/tarteaucitron/lang/tarteaucitron.hr.min.js index 8040f4f..fa96969 100644 --- a/static/tarteaucitron/lang/tarteaucitron.hr.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.hr.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Pozdrav! Ova stranica je transparentna i omogućuje vam odabir usluga trećih strana koje želite omogućiti.",adblock_call:"Molimo vas da onemogućite svoj adblocker kako biste započeli prilagodbu.",reload:"Osvježite stranicu",alertBigScroll:"Nastavkom pomicanja,",alertBigClick:"Ako nastavite pregledavati ovu web stranicu,",alertBig:"dopuštate sve usluge trećih strana",alertBigPrivacy:"Ova stranica koristi kolačiće i daje vam kontrolu nad onim što želite aktivirati",alertSmall:"Upravljanje uslugama",personalize:"Personaliziraj",acceptAll:"U redu, prihvati sve",close:"Zatvori",closeBanner:"Sakrij banner kolačića",privacyUrl:"Pravila privatnosti",all:"Preference za sve usluge",info:"Zaštita vaše privatnosti",disclaimer:"Dopuštanjem ovih usluga trećih strana prihvaćate njihove kolačiće i upotrebu tehnologija praćenja potrebnih za njihovo ispravno funkcioniranje.",allow:"Dopusti",deny:"Zanijeci",noCookie:"Ova usluga ne koristi kolačiće.",useCookie:"Ova usluga može instalirati",useCookieCurrent:"Ova usluga je instalirana",useNoCookie:"Ova usluga nije instalirala nikakve kolačiće.",more:"Saznajte više",source:"Pogledajte službenu stranicu",credit:"Usluge za upravljanje kolačićima od tarteaucitron.js",noServices:"Ova web-lokacija ne koristi nijedan kolačić koji zahtijeva vaš pristanak.",toggleInfoBox:"Prikaži/sakrij informacije o pohrani kolačića",title:"Panel za upravljanje kolačićima",cookieDetail:"Detalji kolačića za",ourSite:"našu web-lokaciju",modalWindow:"(modalni prozor)",newWindow:"(novi prozor)",allowAll:"Dopusti sve kolačiće",denyAll:"Odbij sve kolačiće",icon:"Kolačići",fallback:"onemogućeni su.",allowed:"dopušteno",disallowed:"nedopušteno",ads:{title:"Oglasne mreže",details:"Oglasne mreže mogu generirati prihod prodajom oglasnog prostora na stranici."},analytic:{title:"Mjerenje publike",details:"Usluge mjerenja publike koriste kolačiće za prikupljanje informacija o posjetiteljima."},social:{title:"Društvene mreže",details:"Društvene mreže mogu poboljšati upotrebljivost stranice i pomoći u promociji putem dijeljenja."},video:{title:"Video",details:"Usluge dijeljenja videozapisa pomažu dodavanju bogatog sadržaja na stranicu i povećavaju njenu vidljivost."},comment:{title:"Komentari",details:"Upravitelji komentara olakšavaju izradu komentara i sprječavaju spam."},support:{title:"Podrška",details:"Usluge podrške omogućuju vam kontaktiranje tima stranice i pomoć u njenom poboljšanju."},api:{title:"API-ji",details:"API-ji omogućuju učitavanje skripti poput: geolokacije, tražilica, prijevoda itd."},other:{title:"Ostalo",details:"Usluge za prikaz web sadržaja."},google:{title:"Posebno odobrenje za usluge Google",details:"Google može koristiti vaše podatke za mjerenje publike, učinkovitost oglašavanja ili ponudu personaliziranih oglasa."},mandatoryTitle:"Obvezni kolačići",mandatoryText:"Ova stranica koristi kolačiće neophodne za njen ispravan rad koji se ne mogu onemogućiti.",save:"Spremi",ourpartners:"Naši partneri"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Pozdrav! Ova stranica je transparentna i omogućuje vam odabir usluga trećih strana koje želite omogućiti.",adblock_call:"Molimo vas da onemogućite svoj adblocker kako biste započeli prilagodbu.",reload:"Osvježite stranicu",alertBigScroll:"Nastavkom pomicanja,",alertBigClick:"Ako nastavite pregledavati ovu web stranicu,",alertBig:"dopuštate sve usluge trećih strana",alertBigPrivacy:"Ova stranica koristi kolačiće i daje vam kontrolu nad onim što želite aktivirati",alertSmall:"Upravljanje uslugama",personalize:"Personaliziraj",acceptAll:"U redu, prihvati sve",close:"Zatvori",closeBanner:"Sakrij banner kolačića",privacyUrl:"Pravila privatnosti",all:"Preference za sve usluge",info:"Zaštita vaše privatnosti",disclaimer:"Dopuštanjem ovih usluga trećih strana prihvaćate njihove kolačiće i upotrebu tehnologija praćenja potrebnih za njihovo ispravno funkcioniranje.",allow:"Dopusti",deny:"Zanijeci",noCookie:"Ova usluga ne koristi kolačiće.",useCookie:"Ova usluga može instalirati",useCookieCurrent:"Ova usluga je instalirana",useNoCookie:"Ova usluga nije instalirala nikakve kolačiće.",more:"Saznajte više",source:"Pogledajte službenu stranicu",credit:"Usluge za upravljanje kolačićima od tarteaucitron.js",noServices:"Ova web-lokacija ne koristi nijedan kolačić koji zahtijeva vaš pristanak.",toggleInfoBox:"Prikaži/sakrij informacije o pohrani kolačića",title:"Panel za upravljanje kolačićima",cookieDetail:"Detalji kolačića za",ourSite:"našu web-lokaciju",modalWindow:"(modalni prozor)",newWindow:"(novi prozor)",allowAll:"Dopusti sve kolačiće",denyAll:"Odbij sve kolačiće",icon:"Kolačići",fallback:"onemogućeni su.",allowed:"dopušteno",disallowed:"nedopušteno",ads:{title:"Oglasne mreže",details:"Oglasne mreže mogu generirati prihod prodajom oglasnog prostora na stranici."},analytic:{title:"Mjerenje publike",details:"Usluge mjerenja publike koriste kolačiće za prikupljanje informacija o posjetiteljima."},social:{title:"Društvene mreže",details:"Društvene mreže mogu poboljšati upotrebljivost stranice i pomoći u promociji putem dijeljenja."},video:{title:"Video",details:"Usluge dijeljenja videozapisa pomažu dodavanju bogatog sadržaja na stranicu i povećavaju njenu vidljivost."},comment:{title:"Komentari",details:"Upravitelji komentara olakšavaju izradu komentara i sprječavaju spam."},support:{title:"Podrška",details:"Usluge podrške omogućuju vam kontaktiranje tima stranice i pomoć u njenom poboljšanju."},api:{title:"API-ji",details:"API-ji omogućuju učitavanje skripti poput: geolokacije, tražilica, prijevoda itd."},other:{title:"Ostalo",details:"Usluge za prikaz web sadržaja."},google:{title:"Posebno odobrenje za usluge Google",details:"Google može koristiti vaše podatke za mjerenje publike, učinkovitost oglašavanja ili ponudu personaliziranih oglasa."},mandatoryTitle:"Obvezni kolačići",mandatoryText:"Ova stranica koristi kolačiće neophodne za njen ispravan rad koji se ne mogu onemogućiti.",save:"Spremi",ourpartners:"Naši partneri"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.hu.js b/static/tarteaucitron/lang/tarteaucitron.hu.js index e201555..93c2bf1 100644 --- a/static/tarteaucitron/lang/tarteaucitron.hu.js +++ b/static/tarteaucitron/lang/tarteaucitron.hu.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Szia! Ez a webhely átlátható, és lehetővé teszi a kívánt harmadik fél szolgáltatásainak kiválasztását", "adblock_call": "A testreszabás megkezdéséhez állítsd le az adblockert, kérlek.", "reload": "Oldal frissítése", diff --git a/static/tarteaucitron/lang/tarteaucitron.hu.min.js b/static/tarteaucitron/lang/tarteaucitron.hu.min.js index 8494450..302e023 100644 --- a/static/tarteaucitron/lang/tarteaucitron.hu.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.hu.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Szia! Ez a webhely átlátható, és lehetővé teszi a kívánt harmadik fél szolgáltatásainak kiválasztását",adblock_call:"A testreszabás megkezdéséhez állítsd le az adblockert, kérlek.",reload:"Oldal frissítése",alertBigScroll:"A görgetés folytatásával,",alertBigClick:"Ha folytatod a böngészést ezen oldalon,",alertBig:"engedélyezed a harmadik fél összes szolgáltatását.",alertBigPrivacy:"A webhely tartalmának megjelenítéséhez és a felhasználói élmény javításához cookie-kat használunk",alertSmall:"Szolgáltatások kezelése",personalize:"Beállítások",acceptAll:"OK, elfogadom",close:"Bezár",closeBanner:"Cookie-szalag elrejtése",privacyUrl:"Adatvédelmi irányelvek",all:"Összes szolgáltatás előnyben részesítése",info:"Személyi adataid védelme",disclaimer:"A harmadik fél szolgáltatásainak engedélyezésével elfogadja a sütiket és a megfelelő működésükhöz szükséges nyomkövetési technológiák használatát.",allow:"Elfogadom",deny:"Elutasítom",noCookie:"Ez a szolgáltatás nem használ sütit.",useCookie:"Ez a szolgáltatás telepíthető",useCookieCurrent:"Ez a szolgáltatás telepített",useNoCookie:"Ez a szolgáltatás nem telepített sütiket",more:"Olvass többet",source:"Tekintsd meg a hivatalos weboldalt",credit:"Cookie-kezelő: tarteaucitron.js",noServices:"Ez a weboldal nem használ olyan sütiket, amelyekhez a beleegyezésed szükséges.",toggleInfoBox:"Információk megjelenítése / elrejtése a süti-tárolással kapcsolatban",title:"Süti preferenciák",cookieDetail:"Süti adatok a következőhöz:",ourSite:"weboldalunkon",modalWindow:"(modális ablak)",newWindow:"(új ablak)",allowAll:"Elfogadom az öszeset",denyAll:"Elutasítom",icon:"Cookies",fallback:"letiltott.",allowed:"megengedett",disallowed:"nem engedélyezett",ads:{title:"Reklámhálózat",details:"A hirdetési hálózatok bevételt teremthetnek azáltal, hogy értékesítik a webhelyen található hirdetési felületet"},analytic:{title:"Közönségmérés",details:"A közönségmérési szolgáltatások hasznos statisztikai adatokat generáltak a webhely fejlesztése érdekében."},social:{title:"Közösségi hálózatok",details:"A közösségi hálózatok javíthatják a webhely használhatóságát, és elősegíthetik annak promoválását a megosztások révén."},video:{title:"Videók",details:"A videomegosztó szolgáltatások hozzájárulnak hasznos multimédiához a webhelyen és növelik annak láthatóságát."},comment:{title:"Kommentek",details:"A megjegyzésfigyelők megkönnyítik a megjegyzések kitöltését és a spam elleni küzdelmet."},support:{title:"Támogatás",details:"A támogatási szolgáltatások lehetővé teszik, hogy kapcsolatba lépjen a webhely csapatával, és segítsen annak fejlesztésében."},api:{title:"APIk",details:"Az API-kat a szkriptek betöltésére használják: földrajzi helymeghatározás, keresőmotorok, fordítások..."},other:{title:"Más",details:"Szolgáltatások webtartalom megjelenítésére."},google:{title:"Speciális hozzájárulás a Google szolgáltatásaihoz",details:"A Google használhatja az adatait közönségmérésre, reklámhatékonyságra, vagy személyre szabott hirdetések megjelenítésére."},mandatoryTitle:"Kötelező sütik",mandatoryText:"A webhely tartalmának megjelenítéséhez és a felhasználói bejelentkezéshez sütiket használunk amiket nem lehet kikapcsolni.",save:"Mentés",ourpartners:"Partnereink"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Szia! Ez a webhely átlátható, és lehetővé teszi a kívánt harmadik fél szolgáltatásainak kiválasztását",adblock_call:"A testreszabás megkezdéséhez állítsd le az adblockert, kérlek.",reload:"Oldal frissítése",alertBigScroll:"A görgetés folytatásával,",alertBigClick:"Ha folytatod a böngészést ezen oldalon,",alertBig:"engedélyezed a harmadik fél összes szolgáltatását.",alertBigPrivacy:"A webhely tartalmának megjelenítéséhez és a felhasználói élmény javításához cookie-kat használunk",alertSmall:"Szolgáltatások kezelése",personalize:"Beállítások",acceptAll:"OK, elfogadom",close:"Bezár",closeBanner:"Cookie-szalag elrejtése",privacyUrl:"Adatvédelmi irányelvek",all:"Összes szolgáltatás előnyben részesítése",info:"Személyi adataid védelme",disclaimer:"A harmadik fél szolgáltatásainak engedélyezésével elfogadja a sütiket és a megfelelő működésükhöz szükséges nyomkövetési technológiák használatát.",allow:"Elfogadom",deny:"Elutasítom",noCookie:"Ez a szolgáltatás nem használ sütit.",useCookie:"Ez a szolgáltatás telepíthető",useCookieCurrent:"Ez a szolgáltatás telepített",useNoCookie:"Ez a szolgáltatás nem telepített sütiket",more:"Olvass többet",source:"Tekintsd meg a hivatalos weboldalt",credit:"Cookie-kezelő: tarteaucitron.js",noServices:"Ez a weboldal nem használ olyan sütiket, amelyekhez a beleegyezésed szükséges.",toggleInfoBox:"Információk megjelenítése / elrejtése a süti-tárolással kapcsolatban",title:"Süti preferenciák",cookieDetail:"Süti adatok a következőhöz:",ourSite:"weboldalunkon",modalWindow:"(modális ablak)",newWindow:"(új ablak)",allowAll:"Elfogadom az öszeset",denyAll:"Elutasítom",icon:"Cookies",fallback:"letiltott.",allowed:"megengedett",disallowed:"nem engedélyezett",ads:{title:"Reklámhálózat",details:"A hirdetési hálózatok bevételt teremthetnek azáltal, hogy értékesítik a webhelyen található hirdetési felületet"},analytic:{title:"Közönségmérés",details:"A közönségmérési szolgáltatások hasznos statisztikai adatokat generáltak a webhely fejlesztése érdekében."},social:{title:"Közösségi hálózatok",details:"A közösségi hálózatok javíthatják a webhely használhatóságát, és elősegíthetik annak promoválását a megosztások révén."},video:{title:"Videók",details:"A videomegosztó szolgáltatások hozzájárulnak hasznos multimédiához a webhelyen és növelik annak láthatóságát."},comment:{title:"Kommentek",details:"A megjegyzésfigyelők megkönnyítik a megjegyzések kitöltését és a spam elleni küzdelmet."},support:{title:"Támogatás",details:"A támogatási szolgáltatások lehetővé teszik, hogy kapcsolatba lépjen a webhely csapatával, és segítsen annak fejlesztésében."},api:{title:"APIk",details:"Az API-kat a szkriptek betöltésére használják: földrajzi helymeghatározás, keresőmotorok, fordítások..."},other:{title:"Más",details:"Szolgáltatások webtartalom megjelenítésére."},google:{title:"Speciális hozzájárulás a Google szolgáltatásaihoz",details:"A Google használhatja az adatait közönségmérésre, reklámhatékonyságra, vagy személyre szabott hirdetések megjelenítésére."},mandatoryTitle:"Kötelező sütik",mandatoryText:"A webhely tartalmának megjelenítéséhez és a felhasználói bejelentkezéshez sütiket használunk amiket nem lehet kikapcsolni.",save:"Mentés",ourpartners:"Partnereink"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.it.js b/static/tarteaucitron/lang/tarteaucitron.it.js index 3a8a316..a12294f 100644 --- a/static/tarteaucitron/lang/tarteaucitron.it.js +++ b/static/tarteaucitron/lang/tarteaucitron.it.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Benvenuto! Questo sito ti permette di attivare i servizi di terzi di tua scelta.", "adblock_call": "Disabilita il tuo adblocker per iniziare la navigazione.", "reload": "Aggiorna la pagina", diff --git a/static/tarteaucitron/lang/tarteaucitron.it.min.js b/static/tarteaucitron/lang/tarteaucitron.it.min.js index 56a4b0d..4b841af 100644 --- a/static/tarteaucitron/lang/tarteaucitron.it.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.it.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Benvenuto! Questo sito ti permette di attivare i servizi di terzi di tua scelta.",adblock_call:"Disabilita il tuo adblocker per iniziare la navigazione.",reload:"Aggiorna la pagina",alertBigScroll:"Continuando a scorrere,",alertBigClick:"Continuando a navigare nel sito,",alertBig:"autorizzi l’utilizzo dei cookies inviati da domini di terze parti",alertBigPrivacy:"Questo sito fa uso di cookies e ti consente di decidere se accettarli o rifiutarli",alertSmall:"Gestione dei servizi",acceptAll:"Ok, accetta tutto",personalize:"Personalizza",close:"Chiudi",closeBanner:"Nascondi il banner dei cookie",privacyUrl:"Politica sulla riservatezza",all:"Preferenze per tutti i servizi",info:"Tutela della privacy",disclaimer:"Abilitando l'uso dei servizi di terze parti, accetti la ricezione dei cookies e l'uso delle tecnologie analitici necessarie al loro funzionamento.",allow:"Consenti",deny:"Blocca",noCookie:"Questo servizio non invia nessun cookie",useCookie:"Questo servizio puo' inviare",useCookieCurrent:"Questo servizio ha inviato",useNoCookie:"Questo servizio non ha inviato nessun cookie",more:"Saperne di più",source:"Vai al sito ufficiale",credit:"Gestione dei cookies da tarteaucitron.js",noServices:"Questo sito web non utilizza alcun cookie che richieda il tuo consenso.",toggleInfoBox:"Mostra/nascondi informazioni sulla memorizzazione dei cookie",title:"Pannello di gestione dei cookies",cookieDetail:"Cookie detail for",ourSite:"on our site",modalWindow:"(finestra modale)",newWindow:"(nuova finestra)",allowAll:"Consenti tutti i cookie",denyAll:"Rifiuta tutti i cookie",icon:"Cookies",fallback:"è disattivato",allowed:"permesso",disallowed:"non consentito",ads:{title:"Regie pubblicitarie",details:"Le regie pubblicitarie producono redditi gestendo la commercializzazione degli spazi del sito dedicati alle campagne pubblicitarie"},analytic:{title:"Misura del pubblico",details:"I servizi di misura del pubblico permettono di raccogliere le statistiche utili al miglioramento del sito"},social:{title:"Reti sociali",details:"Le reti sociali permettono di migliorare l'aspetto conviviale del sito e di sviluppare la condivisione dei contenuti da parte degli utenti a fini promozionali."},video:{title:"Video",details:"I servizi di condivisione di video permettono di arricchire il sito di contenuti multimediali e di aumentare la sua visibilità"},comment:{title:"Commenti",details:"La gestione dei commenti utente aiuta a gestire la pubblicazione dei commenti e a lottare contro lo spamming"},support:{title:"Supporto",details:"I servizi di supporto ti consentono di contattare la team del sito e di contribuire al suo miglioramento"},api:{title:"API",details:"Le API permettono di implementare script diversi : geolocalizzazione, motori di ricerca, traduttori..."},other:{title:"Altro",details:"Servizi per visualizzare contenuti web."},google:{title:"Consenso specifico per i servizi di Google",details:"Google può utilizzare i tuoi dati per la misurazione dell'audience, le performance pubblicitarie o per offrirti annunci personalizzati."},mandatoryTitle:"Cookies obbligatori",mandatoryText:"Questo sito utilizza cookies necessari per il suo corretto funzionamento che non possono essere disattivati.",save:"Salva",ourpartners:"I nostri partner"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Benvenuto! Questo sito ti permette di attivare i servizi di terzi di tua scelta.",adblock_call:"Disabilita il tuo adblocker per iniziare la navigazione.",reload:"Aggiorna la pagina",alertBigScroll:"Continuando a scorrere,",alertBigClick:"Continuando a navigare nel sito,",alertBig:"autorizzi l’utilizzo dei cookies inviati da domini di terze parti",alertBigPrivacy:"Questo sito fa uso di cookies e ti consente di decidere se accettarli o rifiutarli",alertSmall:"Gestione dei servizi",acceptAll:"Ok, accetta tutto",personalize:"Personalizza",close:"Chiudi",closeBanner:"Nascondi il banner dei cookie",privacyUrl:"Politica sulla riservatezza",all:"Preferenze per tutti i servizi",info:"Tutela della privacy",disclaimer:"Abilitando l'uso dei servizi di terze parti, accetti la ricezione dei cookies e l'uso delle tecnologie analitici necessarie al loro funzionamento.",allow:"Consenti",deny:"Blocca",noCookie:"Questo servizio non invia nessun cookie",useCookie:"Questo servizio puo' inviare",useCookieCurrent:"Questo servizio ha inviato",useNoCookie:"Questo servizio non ha inviato nessun cookie",more:"Saperne di più",source:"Vai al sito ufficiale",credit:"Gestione dei cookies da tarteaucitron.js",noServices:"Questo sito web non utilizza alcun cookie che richieda il tuo consenso.",toggleInfoBox:"Mostra/nascondi informazioni sulla memorizzazione dei cookie",title:"Pannello di gestione dei cookies",cookieDetail:"Cookie detail for",ourSite:"on our site",modalWindow:"(finestra modale)",newWindow:"(nuova finestra)",allowAll:"Consenti tutti i cookie",denyAll:"Rifiuta tutti i cookie",icon:"Cookies",fallback:"è disattivato",allowed:"permesso",disallowed:"non consentito",ads:{title:"Regie pubblicitarie",details:"Le regie pubblicitarie producono redditi gestendo la commercializzazione degli spazi del sito dedicati alle campagne pubblicitarie"},analytic:{title:"Misura del pubblico",details:"I servizi di misura del pubblico permettono di raccogliere le statistiche utili al miglioramento del sito"},social:{title:"Reti sociali",details:"Le reti sociali permettono di migliorare l'aspetto conviviale del sito e di sviluppare la condivisione dei contenuti da parte degli utenti a fini promozionali."},video:{title:"Video",details:"I servizi di condivisione di video permettono di arricchire il sito di contenuti multimediali e di aumentare la sua visibilità"},comment:{title:"Commenti",details:"La gestione dei commenti utente aiuta a gestire la pubblicazione dei commenti e a lottare contro lo spamming"},support:{title:"Supporto",details:"I servizi di supporto ti consentono di contattare la team del sito e di contribuire al suo miglioramento"},api:{title:"API",details:"Le API permettono di implementare script diversi : geolocalizzazione, motori di ricerca, traduttori..."},other:{title:"Altro",details:"Servizi per visualizzare contenuti web."},google:{title:"Consenso specifico per i servizi di Google",details:"Google può utilizzare i tuoi dati per la misurazione dell'audience, le performance pubblicitarie o per offrirti annunci personalizzati."},mandatoryTitle:"Cookies obbligatori",mandatoryText:"Questo sito utilizza cookies necessari per il suo corretto funzionamento che non possono essere disattivati.",save:"Salva",ourpartners:"I nostri partner"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.ja.js b/static/tarteaucitron/lang/tarteaucitron.ja.js index f2a4475..b22e0d1 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ja.js +++ b/static/tarteaucitron/lang/tarteaucitron.ja.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "こんにちは!このサイトは透明で、許可するサードパーティーサービスを選択できます。", "adblock_call": "カスタマイズを開始するには、広告ブロッカーを無効にしてください。", "reload": "ページをリフレッシュ", diff --git a/static/tarteaucitron/lang/tarteaucitron.ja.min.js b/static/tarteaucitron/lang/tarteaucitron.ja.min.js index 8eefdc0..1402700 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ja.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.ja.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"こんにちは!このサイトは透明で、許可するサードパーティーサービスを選択できます。",adblock_call:"カスタマイズを開始するには、広告ブロッカーを無効にしてください。",reload:"ページをリフレッシュ",alertBigScroll:"スクロールを続けることで、",alertBigClick:"このウェブサイトを引き続き閲覧する場合、",alertBig:"すべてのサードパーティーサービスを許可しています",alertBigPrivacy:"当サイトはクッキーを利用しております。お客様自身でクッキー利用の設定および管理ができます。",alertSmall:"サービスを管理",personalize:"カスタマイズする",acceptAll:"全てに同意する",close:"閉じる",closeBanner:"クッキー バナーを非表示にする",privacyUrl:"プライバシーポリシー",all:"すべてのサービスの設定",info:"プライバシーの保護",disclaimer:"これらの第三者によるサービスを許可することで、サイトの動作に必要なクッキーや他のトラッキング・テクノロジーの使用に同意するものとみなします。",allow:"許可",deny:"拒否",noCookie:"このサービスはクッキーを使用しません。",useCookie:"このサービスはクッキーをインストールできます。",useCookieCurrent:"このサービスは2つのクッキーを利用します",useNoCookie:"このサービスはクッキーをインストールしていません。",more:"もっと読む",source:"公式サイトで閲覧する",credit:"tarteaucitron.js によるクッキー マネージャー",noServices:"このウェブサイトはあなたの同意が必要なクッキーを使用していません。",toggleInfoBox:"クッキーの保存に関する情報の表示/非表示",title:"クッキー利用の管理について",cookieDetail:"クッキーの詳細",ourSite:"当サイト上",modalWindow:"(モーダルウィンドウ)",newWindow:"(新しい窓)",allowAll:"すべてのクッキーを許可する",denyAll:"すべてのクッキーを拒否する",icon:"クッキー",fallback:"が無効になっています。",allowed:"許可",disallowed:"許可されていません",ads:{title:"広告ネットワーク",details:"広告ネットワークは、サイト上の広告スペースを販売することで収益を生むことができます。"},analytic:{title:"視聴者数の測定",details:"サイトの改善のために有益な統計を生成するために使用される視聴者数の測定サービス。"},social:{title:"ソーシャルネットワーク",details:"ソーシャルネットワークはサイトの使いやすさを向上させ、共有を通じてプロモーションに役立ちます。"},video:{title:"動画",details:"動画共有サービスはサイトに豊富なメディアを追加し、その可視性を向上させるのに役立ちます。"},comment:{title:"コメント",details:"コメントマネージャーはコメントの提出を容易にし、スパムとの戦いをサポートします。"},support:{title:"サポート",details:"サポートサービスを使用して、サイトのチームと連絡を取り、サイトの改善に寄与できます。"},api:{title:"APIs",details:"APIはスクリプトを読み込むために使用されます:地理位置、検索エンジン、翻訳など。"},other:{title:"その他",details:"ウェブコンテンツの表示に使用されるサービス。"},google:{title:"Google サービスへの特定の同意",details:"Google は、お客様のデータをオーディエンス測定、広告のパフォーマンス、またはパーソナライズされた広告の提供に使用する場合があります。"},mandatoryTitle:"必須クッキー",mandatoryText:"このサイトは、その正常な動作に必要なクッキーを使用しており、これらは無効にできません。",save:"保存",ourpartners:"当社のパートナー"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"こんにちは!このサイトは透明で、許可するサードパーティーサービスを選択できます。",adblock_call:"カスタマイズを開始するには、広告ブロッカーを無効にしてください。",reload:"ページをリフレッシュ",alertBigScroll:"スクロールを続けることで、",alertBigClick:"このウェブサイトを引き続き閲覧する場合、",alertBig:"すべてのサードパーティーサービスを許可しています",alertBigPrivacy:"当サイトはクッキーを利用しております。お客様自身でクッキー利用の設定および管理ができます。",alertSmall:"サービスを管理",personalize:"カスタマイズする",acceptAll:"全てに同意する",close:"閉じる",closeBanner:"クッキー バナーを非表示にする",privacyUrl:"プライバシーポリシー",all:"すべてのサービスの設定",info:"プライバシーの保護",disclaimer:"これらの第三者によるサービスを許可することで、サイトの動作に必要なクッキーや他のトラッキング・テクノロジーの使用に同意するものとみなします。",allow:"許可",deny:"拒否",noCookie:"このサービスはクッキーを使用しません。",useCookie:"このサービスはクッキーをインストールできます。",useCookieCurrent:"このサービスは2つのクッキーを利用します",useNoCookie:"このサービスはクッキーをインストールしていません。",more:"もっと読む",source:"公式サイトで閲覧する",credit:"tarteaucitron.js によるクッキー マネージャー",noServices:"このウェブサイトはあなたの同意が必要なクッキーを使用していません。",toggleInfoBox:"クッキーの保存に関する情報の表示/非表示",title:"クッキー利用の管理について",cookieDetail:"クッキーの詳細",ourSite:"当サイト上",modalWindow:"(モーダルウィンドウ)",newWindow:"(新しい窓)",allowAll:"すべてのクッキーを許可する",denyAll:"すべてのクッキーを拒否する",icon:"クッキー",fallback:"が無効になっています。",allowed:"許可",disallowed:"許可されていません",ads:{title:"広告ネットワーク",details:"広告ネットワークは、サイト上の広告スペースを販売することで収益を生むことができます。"},analytic:{title:"視聴者数の測定",details:"サイトの改善のために有益な統計を生成するために使用される視聴者数の測定サービス。"},social:{title:"ソーシャルネットワーク",details:"ソーシャルネットワークはサイトの使いやすさを向上させ、共有を通じてプロモーションに役立ちます。"},video:{title:"動画",details:"動画共有サービスはサイトに豊富なメディアを追加し、その可視性を向上させるのに役立ちます。"},comment:{title:"コメント",details:"コメントマネージャーはコメントの提出を容易にし、スパムとの戦いをサポートします。"},support:{title:"サポート",details:"サポートサービスを使用して、サイトのチームと連絡を取り、サイトの改善に寄与できます。"},api:{title:"APIs",details:"APIはスクリプトを読み込むために使用されます:地理位置、検索エンジン、翻訳など。"},other:{title:"その他",details:"ウェブコンテンツの表示に使用されるサービス。"},google:{title:"Google サービスへの特定の同意",details:"Google は、お客様のデータをオーディエンス測定、広告のパフォーマンス、またはパーソナライズされた広告の提供に使用する場合があります。"},mandatoryTitle:"必須クッキー",mandatoryText:"このサイトは、その正常な動作に必要なクッキーを使用しており、これらは無効にできません。",save:"保存",ourpartners:"当社のパートナー"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.ko.js b/static/tarteaucitron/lang/tarteaucitron.ko.js index c6e2df7..a8d01eb 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ko.js +++ b/static/tarteaucitron/lang/tarteaucitron.ko.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "안녕하세요? 이 사이트는 투명성을 지향하며 귀하가 제 3자 서비스의 활성화에 대한 선택을 할 수 있도록 합니다", "adblock_call": "맞춤 설정의 시작을 위해 광고차단 기능을 비활성화하세요", "reload": "페이지를 새로 고침하세요", diff --git a/static/tarteaucitron/lang/tarteaucitron.ko.min.js b/static/tarteaucitron/lang/tarteaucitron.ko.min.js index 5de2a9f..e46ec41 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ko.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.ko.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"안녕하세요? 이 사이트는 투명성을 지향하며 귀하가 제 3자 서비스의 활성화에 대한 선택을 할 수 있도록 합니다",adblock_call:"맞춤 설정의 시작을 위해 광고차단 기능을 비활성화하세요",reload:"페이지를 새로 고침하세요",alertBigScroll:"스크롤 계속",alertBigClick:"탐색 계속",alertBig:"귀하는 쿠키를 설치할 수 있는 제3자 서비스의 사용에 동의합니다",alertBigPrivacy:"이 사이트는 쿠키를 사용하며 귀하가 활성화하려는 쿠키를 제어할 수 있습니다",alertSmall:"서비스 관리",personalize:"설정 변경",acceptAll:"모두 수락",close:"닫기",closeBanner:"쿠키 배너 숨기기",privacyUrl:"개인 정보 정책",all:"모든 서비스에 대한 기본 설정",info:"개인 정보 보호",disclaimer:"이러한 제3자 서비스를 허용함으로써 귀하는 쿠키의 저장 및 읽기와 쿠키의 올바른 기능에 필요한 추적 기술의 사용을 허용하게 됩니다..",allow:"허용",deny:"거부",noCookie:"이 서비스는 쿠키를 저장하지 않습니다.",useCookie:"이 서비스는 쿠키를 저장할 수도 있습니다.",useCookieCurrent:"이 서비스가 쿠키를 저장했습니다.",useNoCookie:"이 서비스는 쿠키를 저장하지 않았습니다.",more:"더 알아보기",source:"공식 홈페이지 보기",credit:" Tarteaucitron.js를 통한 쿠키 관리",noServices:"이 사이트는 귀하의 동의가 필요한 쿠키를 사용하지 않습니다.",toggleInfoBox:"쿠키 저장에 대한 정보 표시/숨기기",title:"쿠키 관리 패널",cookieDetail:"쿠키 세부정보",ourSite:"우리 사이트에서",modalWindow:"모달 창",newWindow:"새 창",allowAll:"모두 허용",denyAll:"모두 거부",icon:"쿠키",fallback:"비활성화됨.",allowed:"허용됨",disallowed:"허용되지 않음",ads:{title:"광고 대행사",details:"광고 대행사는 사이트의 광고 공간의 마케팅을 통해 수익창출을 돕습니다"},analytic:{title:"독자 측정",details:"독자 측정 서비스는 사이트 개선에 유용한 방문 통계를 생성합니다."},social:{title:"소셜 네트워크",details:"소셜 네트워크는 사이트의 사용자 친화성을 높이고 공유를 통해 사이트를 홍보하는 데 도움이 됩니다."},video:{title:"동영상",details:"동영상 공유 서비스는 멀티미디어 콘텐츠로 사이트를 풍부하게 하고 가시성을 높입니다."},comment:{title:"댓글",details:"댓글 관리자는 귀하의 댓글 게시를 용이하게 하고 스팸을 방지합니다."},support:{title:"지원",details:"지원 서비스를 통해 사이트 관리팀과 연락하여 사이트 개선에 도움을 줄 수 있습니다."},api:{title:"APIs",details:"API는 위치정보, 검색 엔진, 번역 등 스크립트 로딩을 허용합니다..."},other:{title:"기타",details:"웹 콘텐츠 표시를 목적으로 하는 서비스입니다."},google:{title:"구글 서비스에 대한 세부적인 동의",details:"구글은 잠재고객 측정, 광고 성과 또는 개인 맞춤 광고 제공을 위해 귀하의 데이터를 사용할 수 있습니다."},mandatoryTitle:"필수 쿠키",mandatoryText:"이 사이트는 올바른 작동을 위해 필요한 쿠키들을 사용합니다. 이 쿠키들은 비활성화할 수 없습니다.",save:"저장하기",ourpartners:"당사의 파트너들"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"안녕하세요? 이 사이트는 투명성을 지향하며 귀하가 제 3자 서비스의 활성화에 대한 선택을 할 수 있도록 합니다",adblock_call:"맞춤 설정의 시작을 위해 광고차단 기능을 비활성화하세요",reload:"페이지를 새로 고침하세요",alertBigScroll:"스크롤 계속",alertBigClick:"탐색 계속",alertBig:"귀하는 쿠키를 설치할 수 있는 제3자 서비스의 사용에 동의합니다",alertBigPrivacy:"이 사이트는 쿠키를 사용하며 귀하가 활성화하려는 쿠키를 제어할 수 있습니다",alertSmall:"서비스 관리",personalize:"설정 변경",acceptAll:"모두 수락",close:"닫기",closeBanner:"쿠키 배너 숨기기",privacyUrl:"개인 정보 정책",all:"모든 서비스에 대한 기본 설정",info:"개인 정보 보호",disclaimer:"이러한 제3자 서비스를 허용함으로써 귀하는 쿠키의 저장 및 읽기와 쿠키의 올바른 기능에 필요한 추적 기술의 사용을 허용하게 됩니다..",allow:"허용",deny:"거부",noCookie:"이 서비스는 쿠키를 저장하지 않습니다.",useCookie:"이 서비스는 쿠키를 저장할 수도 있습니다.",useCookieCurrent:"이 서비스가 쿠키를 저장했습니다.",useNoCookie:"이 서비스는 쿠키를 저장하지 않았습니다.",more:"더 알아보기",source:"공식 홈페이지 보기",credit:" Tarteaucitron.js를 통한 쿠키 관리",noServices:"이 사이트는 귀하의 동의가 필요한 쿠키를 사용하지 않습니다.",toggleInfoBox:"쿠키 저장에 대한 정보 표시/숨기기",title:"쿠키 관리 패널",cookieDetail:"쿠키 세부정보",ourSite:"우리 사이트에서",modalWindow:"모달 창",newWindow:"새 창",allowAll:"모두 허용",denyAll:"모두 거부",icon:"쿠키",fallback:"비활성화됨.",allowed:"허용됨",disallowed:"허용되지 않음",ads:{title:"광고 대행사",details:"광고 대행사는 사이트의 광고 공간의 마케팅을 통해 수익창출을 돕습니다"},analytic:{title:"독자 측정",details:"독자 측정 서비스는 사이트 개선에 유용한 방문 통계를 생성합니다."},social:{title:"소셜 네트워크",details:"소셜 네트워크는 사이트의 사용자 친화성을 높이고 공유를 통해 사이트를 홍보하는 데 도움이 됩니다."},video:{title:"동영상",details:"동영상 공유 서비스는 멀티미디어 콘텐츠로 사이트를 풍부하게 하고 가시성을 높입니다."},comment:{title:"댓글",details:"댓글 관리자는 귀하의 댓글 게시를 용이하게 하고 스팸을 방지합니다."},support:{title:"지원",details:"지원 서비스를 통해 사이트 관리팀과 연락하여 사이트 개선에 도움을 줄 수 있습니다."},api:{title:"APIs",details:"API는 위치정보, 검색 엔진, 번역 등 스크립트 로딩을 허용합니다..."},other:{title:"기타",details:"웹 콘텐츠 표시를 목적으로 하는 서비스입니다."},google:{title:"구글 서비스에 대한 세부적인 동의",details:"구글은 잠재고객 측정, 광고 성과 또는 개인 맞춤 광고 제공을 위해 귀하의 데이터를 사용할 수 있습니다."},mandatoryTitle:"필수 쿠키",mandatoryText:"이 사이트는 올바른 작동을 위해 필요한 쿠키들을 사용합니다. 이 쿠키들은 비활성화할 수 없습니다.",save:"저장하기",ourpartners:"당사의 파트너들"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.lb.js b/static/tarteaucitron/lang/tarteaucitron.lb.js index bbffe3d..a4aca84 100644 --- a/static/tarteaucitron/lang/tarteaucitron.lb.js +++ b/static/tarteaucitron/lang/tarteaucitron.lb.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Gudde Moien! Dëse Site ass transparent a gëtt Iech d'Wiel wéi eng Drëtt-Partei Servicer dir aktivéiere wëllt.", "adblock_call": "Deaktivéiert w.e.g. Ären Adblocker fir d'Personaliséierung unzefänken.", "reload": "Säit nei lueden", diff --git a/static/tarteaucitron/lang/tarteaucitron.lb.min.js b/static/tarteaucitron/lang/tarteaucitron.lb.min.js index 6cb87c7..90fded5 100644 --- a/static/tarteaucitron/lang/tarteaucitron.lb.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.lb.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Gudde Moien! Dëse Site ass transparent a gëtt Iech d'Wiel wéi eng Drëtt-Partei Servicer dir aktivéiere wëllt.",adblock_call:"Deaktivéiert w.e.g. Ären Adblocker fir d'Personaliséierung unzefänken.",reload:"Säit nei lueden",alertBigScroll:"Andeems Dir weider scrollt,",alertBigClick:"Andeems Dir Är Navigatioun weiderféiert,",alertBig:"akzeptéier Dir d'Benotzung vun Drëtt-Partei Servicer, déi Cookien installéiere kënnen",alertBigPrivacy:"Dëse Site benotzt Cookien a gëtt Iech Kontroll iwwer déi Dir wëllt aktivéieren",alertSmall:"Gestioun vun de Servicer",acceptAll:"Alles akzeptéieren",personalize:"Personaliséieren",close:"Zoumaachen",closeBanner:"Verstoppen Cookien Banner",privacyUrl:"Privatsphär Politik",all:"Preferenze fir all Servicer",info:"Schutz vun Ärer Privatsphär",disclaimer:"Andeems Dir dës Drëtt-Partei Servicer autoriséiert, akzeptéiert Dir den Depot an d'Liesen vu Cookien sou wéi d'Benotzung vun Tracking-Technologien, déi néideg sinn fir hire gudde Fonctionnement.",allow:"Erlaaben",deny:"Refuséieren",noCookie:"Dëse Service benotzt keng Cookien.",useCookie:"Dëse Service kann Cookien hannerleeën",useCookieCurrent:"Dëse Service huet Cookien hannerluecht",useNoCookie:"Dëse Service huet keng Cookien ofgespäichert.",more:"Méi liesen",source:"Kuckt déi offiziell Websäit",credit:"Cookie Management vun tarteaucitron.js",noServices:"Dëse Site benotzt keng Cookien déi Är Zoustëmmung erfuerderen.",toggleInfoBox:"Weisen / verstoppen d'Informatiounen iwwer de Cookie Stockage",title:"Plattform vun der Cookie Gestioun",cookieDetail:"Detailer iwwer Cookien",ourSite:"op eisem Site",modalWindow:"(modal Fënster)",newWindow:"(nei Fënster)",allowAll:"Alles akzeptéieren",denyAll:"Alles verwerfen",icon:"Cookies",fallback:"ass desaktivéiert.",allowed:"akzeptéiert",disallowed:"verworf",ads:{title:"Publicitéits Servicer",details:"D'Publicitéits Servicer maachen et méiglech Einnamen ze generéieren andeems d'Werbeplazen vum Site vermaart ginn."},analytic:{title:"Miessung vun der Audienz",details:"Audienzmiessungsservicer maachen et méiglech Trafficstatistiken ze generéieren déi nëtzlech sinn fir de Site ze verbesseren."},social:{title:"Sozial Netzwierker",details:"Sozial Netzwierker verbesseren d'Benotzerfrëndlechkeet vum Site an hëllefen duerch Deelen dësen ze promouvéieren."},video:{title:"Videoen",details:"Video Sharing Servicer beräicheren de Site mat Multimedia Inhalt a vergréissere seng Visibilitéit."},comment:{title:"Kommentarer",details:"De Gestionnaire vu Kommentaren erliichtert den Depot vun Äre Kommentaren a hëlleft Spam-Problemer ze vermeiden."},support:{title:"Support",details:"Support-Servicer erlaben Iech mat der Ekipp vum Site a Kontakt ze trieden an ze hëllefen en ze verbesseren."},api:{title:"APIen",details:"APIen erlaben Iech Skripten ze lueden wéi z.B.: Geolokalisatioun, Sichmotoren, Iwwersetzungen, …"},other:{title:"Aner",details:"Servicer fir Webinhalt ze weisen."},google:{title:"Spezifesch Zoustëmmung fir Google Servicer",details:"Google kann Är Date fir d'Zilgruppemessung, d'Werbeperformanz oder fir Iech personaliséiert Annoncen ze bidden, benotzen."},mandatoryTitle:"Obligatoresch Cookien",mandatoryText:"Dëse Site benotzt Cookien déi néideg sinn fir säi richtege Fonctionnement. Si kënnen net ausgeschalt ginn.",save:"Späicheren",ourpartners:"Eis Partner"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Gudde Moien! Dëse Site ass transparent a gëtt Iech d'Wiel wéi eng Drëtt-Partei Servicer dir aktivéiere wëllt.",adblock_call:"Deaktivéiert w.e.g. Ären Adblocker fir d'Personaliséierung unzefänken.",reload:"Säit nei lueden",alertBigScroll:"Andeems Dir weider scrollt,",alertBigClick:"Andeems Dir Är Navigatioun weiderféiert,",alertBig:"akzeptéier Dir d'Benotzung vun Drëtt-Partei Servicer, déi Cookien installéiere kënnen",alertBigPrivacy:"Dëse Site benotzt Cookien a gëtt Iech Kontroll iwwer déi Dir wëllt aktivéieren",alertSmall:"Gestioun vun de Servicer",acceptAll:"Alles akzeptéieren",personalize:"Personaliséieren",close:"Zoumaachen",closeBanner:"Verstoppen Cookien Banner",privacyUrl:"Privatsphär Politik",all:"Preferenze fir all Servicer",info:"Schutz vun Ärer Privatsphär",disclaimer:"Andeems Dir dës Drëtt-Partei Servicer autoriséiert, akzeptéiert Dir den Depot an d'Liesen vu Cookien sou wéi d'Benotzung vun Tracking-Technologien, déi néideg sinn fir hire gudde Fonctionnement.",allow:"Erlaaben",deny:"Refuséieren",noCookie:"Dëse Service benotzt keng Cookien.",useCookie:"Dëse Service kann Cookien hannerleeën",useCookieCurrent:"Dëse Service huet Cookien hannerluecht",useNoCookie:"Dëse Service huet keng Cookien ofgespäichert.",more:"Méi liesen",source:"Kuckt déi offiziell Websäit",credit:"Cookie Management vun tarteaucitron.js",noServices:"Dëse Site benotzt keng Cookien déi Är Zoustëmmung erfuerderen.",toggleInfoBox:"Weisen / verstoppen d'Informatiounen iwwer de Cookie Stockage",title:"Plattform vun der Cookie Gestioun",cookieDetail:"Detailer iwwer Cookien",ourSite:"op eisem Site",modalWindow:"(modal Fënster)",newWindow:"(nei Fënster)",allowAll:"Alles akzeptéieren",denyAll:"Alles verwerfen",icon:"Cookies",fallback:"ass desaktivéiert.",allowed:"akzeptéiert",disallowed:"verworf",ads:{title:"Publicitéits Servicer",details:"D'Publicitéits Servicer maachen et méiglech Einnamen ze generéieren andeems d'Werbeplazen vum Site vermaart ginn."},analytic:{title:"Miessung vun der Audienz",details:"Audienzmiessungsservicer maachen et méiglech Trafficstatistiken ze generéieren déi nëtzlech sinn fir de Site ze verbesseren."},social:{title:"Sozial Netzwierker",details:"Sozial Netzwierker verbesseren d'Benotzerfrëndlechkeet vum Site an hëllefen duerch Deelen dësen ze promouvéieren."},video:{title:"Videoen",details:"Video Sharing Servicer beräicheren de Site mat Multimedia Inhalt a vergréissere seng Visibilitéit."},comment:{title:"Kommentarer",details:"De Gestionnaire vu Kommentaren erliichtert den Depot vun Äre Kommentaren a hëlleft Spam-Problemer ze vermeiden."},support:{title:"Support",details:"Support-Servicer erlaben Iech mat der Ekipp vum Site a Kontakt ze trieden an ze hëllefen en ze verbesseren."},api:{title:"APIen",details:"APIen erlaben Iech Skripten ze lueden wéi z.B.: Geolokalisatioun, Sichmotoren, Iwwersetzungen, …"},other:{title:"Aner",details:"Servicer fir Webinhalt ze weisen."},google:{title:"Spezifesch Zoustëmmung fir Google Servicer",details:"Google kann Är Date fir d'Zilgruppemessung, d'Werbeperformanz oder fir Iech personaliséiert Annoncen ze bidden, benotzen."},mandatoryTitle:"Obligatoresch Cookien",mandatoryText:"Dëse Site benotzt Cookien déi néideg sinn fir säi richtege Fonctionnement. Si kënnen net ausgeschalt ginn.",save:"Späicheren",ourpartners:"Eis Partner"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.lt.js b/static/tarteaucitron/lang/tarteaucitron.lt.js index 48306f8..60a2c10 100644 --- a/static/tarteaucitron/lang/tarteaucitron.lt.js +++ b/static/tarteaucitron/lang/tarteaucitron.lt.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Sveiki! Ši svetainė veikia skaidriai ir leidžia pasirinkti trečiosios šalies paslaugas, kurias norite leisti.", "adblock_call": "Norėdami pradėti taikyti, išjunkite ,Adblocker", "reload": "Atnaujinkite puslapį", diff --git a/static/tarteaucitron/lang/tarteaucitron.lt.min.js b/static/tarteaucitron/lang/tarteaucitron.lt.min.js index 042c2f8..6cdc5c4 100644 --- a/static/tarteaucitron/lang/tarteaucitron.lt.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.lt.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Sveiki! Ši svetainė veikia skaidriai ir leidžia pasirinkti trečiosios šalies paslaugas, kurias norite leisti.",adblock_call:"Norėdami pradėti taikyti, išjunkite ,Adblocker",reload:"Atnaujinkite puslapį",alertBigScroll:"Tęsiant slankiojimą",alertBigClick:"Jei ir toliau naršote šioje svetainėje,",alertBig:"leidžiate naudotis visomis trečiųjų šalių paslaugomis",alertBigPrivacy:"Ši svetainė naudoja slapukus ir suteikia jums galimybę valdyti, ką norite suaktyvinti",alertSmall:"Tvarkykite paslaugas",personalize:"Suasmeninkite",acceptAll:"Gerai, priimu visus",close:"Uždaryti",closeBanner:"Slėpti slapukų reklamjuostę",privacyUrl:"Privatumo politika",all:"Pirmenybė visoms paslaugoms",info:"Jūsų privatumo apsauga",disclaimer:"Leisdami šias trečiųjų šalių paslaugas, jūs sutinkate su jų slapukais ir sekimo technologijų naudojimu, reikalingu jų tinkamam veikimui.",allow:"Leisti",deny:"Atsisakyti",noCookie:"Ši paslauga nenaudoja slapukų.",useCookie:"Ši paslauga gali būti įdiegta",useCookieCurrent:"Ši paslauga įdiegta",useNoCookie:"Ši paslauga neįdiegė jokių slapukų.",more:"Skaityti daugiau",source:"Peržiūrėkite oficialią svetainę",credit:"Slapukų tvarkyklė, kurią pateikė tarteaucitron.js",noServices:"Šioje svetainėje nenaudojami jokie slapukai, kuriems reikalingas jūsų sutikimas.",toggleInfoBox:"Rodyti / slėpti informaciją apie slapukų saugojimą",title:"Slapukų valdymo skydelis",cookieDetail:"Išsami slapuko informacija",ourSite:"mūsų svetainėje",modalWindow:"(modalinis langas)",newWindow:"(naujas langas)",allowAll:"Leisti visus slapukus",denyAll:"Atsisakyti visų slapukų",icon:"Cookies",fallback:"yra išjungtas.",allowed:"leidžiama",disallowed:"neleidžiama",ads:{title:"Reklamos tinklas",details:"Reklamos tinklai gali gauti pajamų, parduodami reklamos vietą svetainėje."},analytic:{title:"Auditorijos matavimas",details:"Naudotos auditorijos vertinimo paslaugos generuoti naudingą statistinį lankomumą svetainės veiklos patobulinimui."},social:{title:"Socialiniai tinklai",details:"Socialiniai tinklai gali pagerinti svetainės naudojimą ir padėti ją reklamuoti per akcijas."},video:{title:"Vaizdo įrašai",details:"Vaizdo įrašų bendrinimo paslaugos padeda pritraukti gausesnę media į svetainę ir padidinti jos matomumą."},comment:{title:"Komentarai",details:"Komentarų valdytojai palengvina komentarų sisteminimą ir kovoja su šlamštu."},support:{title:"Pagalba",details:"Pagalbos paslaugos leidžia jums susisiekti su svetainės komanda ir padėti ją tobulinti."},api:{title:"APIs (Aplikacijų programavimo sąsajos)",details:"API naudojamos tekstams įkelti: geografinė padėtis, paieškos sistemos, vertimai, ..."},other:{title:"Kita",details:"Paslaugos, rodančios svetainės turinį."},google:{title:"Specifinis sutikimas „Google“ paslaugoms",details:"„Google“ gali naudoti jūsų duomenis auditorijos matavimui, reklamos veiklos vertinimui arba jums siūlomiems asmeniškai pritaikytiems skelbimams."},mandatoryTitle:"Privalomi slapukai",mandatoryText:"Ši svetainė naudoja slapukus, reikalingus tinkamam jos veikimui, kurių negalima išjungti.",save:"Išsaugoti",ourpartners:"Mūsų partneriai"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Sveiki! Ši svetainė veikia skaidriai ir leidžia pasirinkti trečiosios šalies paslaugas, kurias norite leisti.",adblock_call:"Norėdami pradėti taikyti, išjunkite ,Adblocker",reload:"Atnaujinkite puslapį",alertBigScroll:"Tęsiant slankiojimą",alertBigClick:"Jei ir toliau naršote šioje svetainėje,",alertBig:"leidžiate naudotis visomis trečiųjų šalių paslaugomis",alertBigPrivacy:"Ši svetainė naudoja slapukus ir suteikia jums galimybę valdyti, ką norite suaktyvinti",alertSmall:"Tvarkykite paslaugas",personalize:"Suasmeninkite",acceptAll:"Gerai, priimu visus",close:"Uždaryti",closeBanner:"Slėpti slapukų reklamjuostę",privacyUrl:"Privatumo politika",all:"Pirmenybė visoms paslaugoms",info:"Jūsų privatumo apsauga",disclaimer:"Leisdami šias trečiųjų šalių paslaugas, jūs sutinkate su jų slapukais ir sekimo technologijų naudojimu, reikalingu jų tinkamam veikimui.",allow:"Leisti",deny:"Atsisakyti",noCookie:"Ši paslauga nenaudoja slapukų.",useCookie:"Ši paslauga gali būti įdiegta",useCookieCurrent:"Ši paslauga įdiegta",useNoCookie:"Ši paslauga neįdiegė jokių slapukų.",more:"Skaityti daugiau",source:"Peržiūrėkite oficialią svetainę",credit:"Slapukų tvarkyklė, kurią pateikė tarteaucitron.js",noServices:"Šioje svetainėje nenaudojami jokie slapukai, kuriems reikalingas jūsų sutikimas.",toggleInfoBox:"Rodyti / slėpti informaciją apie slapukų saugojimą",title:"Slapukų valdymo skydelis",cookieDetail:"Išsami slapuko informacija",ourSite:"mūsų svetainėje",modalWindow:"(modalinis langas)",newWindow:"(naujas langas)",allowAll:"Leisti visus slapukus",denyAll:"Atsisakyti visų slapukų",icon:"Cookies",fallback:"yra išjungtas.",allowed:"leidžiama",disallowed:"neleidžiama",ads:{title:"Reklamos tinklas",details:"Reklamos tinklai gali gauti pajamų, parduodami reklamos vietą svetainėje."},analytic:{title:"Auditorijos matavimas",details:"Naudotos auditorijos vertinimo paslaugos generuoti naudingą statistinį lankomumą svetainės veiklos patobulinimui."},social:{title:"Socialiniai tinklai",details:"Socialiniai tinklai gali pagerinti svetainės naudojimą ir padėti ją reklamuoti per akcijas."},video:{title:"Vaizdo įrašai",details:"Vaizdo įrašų bendrinimo paslaugos padeda pritraukti gausesnę media į svetainę ir padidinti jos matomumą."},comment:{title:"Komentarai",details:"Komentarų valdytojai palengvina komentarų sisteminimą ir kovoja su šlamštu."},support:{title:"Pagalba",details:"Pagalbos paslaugos leidžia jums susisiekti su svetainės komanda ir padėti ją tobulinti."},api:{title:"APIs (Aplikacijų programavimo sąsajos)",details:"API naudojamos tekstams įkelti: geografinė padėtis, paieškos sistemos, vertimai, ..."},other:{title:"Kita",details:"Paslaugos, rodančios svetainės turinį."},google:{title:"Specifinis sutikimas „Google“ paslaugoms",details:"„Google“ gali naudoti jūsų duomenis auditorijos matavimui, reklamos veiklos vertinimui arba jums siūlomiems asmeniškai pritaikytiems skelbimams."},mandatoryTitle:"Privalomi slapukai",mandatoryText:"Ši svetainė naudoja slapukus, reikalingus tinkamam jos veikimui, kurių negalima išjungti.",save:"Išsaugoti",ourpartners:"Mūsų partneriai"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.lv.js b/static/tarteaucitron/lang/tarteaucitron.lv.js index 4ff0455..e0caced 100644 --- a/static/tarteaucitron/lang/tarteaucitron.lv.js +++ b/static/tarteaucitron/lang/tarteaucitron.lv.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Szia! Ez a webhely átlátható, és lehetővé teszi a kívánt harmadik fél szolgáltatásainak kiválasztását", "adblock_call": "A testreszabás megkezdéséhez állítsd le az adblockert, kérlek.", "reload": "Oldal frissítése", diff --git a/static/tarteaucitron/lang/tarteaucitron.lv.min.js b/static/tarteaucitron/lang/tarteaucitron.lv.min.js index 4afda25..0d8bd5e 100644 --- a/static/tarteaucitron/lang/tarteaucitron.lv.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.lv.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Szia! Ez a webhely átlátható, és lehetővé teszi a kívánt harmadik fél szolgáltatásainak kiválasztását",adblock_call:"A testreszabás megkezdéséhez állítsd le az adblockert, kérlek.",reload:"Oldal frissítése",alertBigScroll:"A görgetés folytatásával,",alertBigClick:"Ha folytatod a böngészést ezen oldalon,",alertBig:"engedélyezed a harmadik fél összes szolgáltatását.",alertBigPrivacy:"A webhely tartalmának megjelenítéséhez és a felhasználói élmény javításához cookie-kat használunk",alertSmall:"Szolgáltatások kezelése",personalize:"Beállítások",acceptAll:"OK, elfogadom",close:"Bezár",closeBanner:"Slēpt sīkfailu reklāmkarogu",privacyUrl:"Adatvédelmi irányelvek",all:"Összes szolgáltatás előnyben részesítése",info:"Személyi adataid védelme",disclaimer:"A harmadik fél szolgáltatásainak engedélyezésével elfogadja a sütiket és a megfelelő működésükhöz szükséges nyomkövetési technológiák használatát.",allow:"Elfogadom",deny:"Elutasítom",noCookie:"Ez a szolgáltatás nem használ sütit.",useCookie:"Ez a szolgáltatás telepíthető",useCookieCurrent:"Ez a szolgáltatás telepített",useNoCookie:"Ez a szolgáltatás nem telepített sütiket",more:"Olvass többet",source:"Tekintsd meg a hivatalos weboldalt",credit:"Cookie-kezelő: tarteaucitron.js",noServices:"Ez a weboldal nem használ olyan sütiket, amelyekhez a beleegyezésed szükséges.",toggleInfoBox:"Információk megjelenítése / elrejtése a süti-tárolással kapcsolatban",title:"Süti preferenciák",cookieDetail:"Süti adatok a következőhöz:",ourSite:"weboldalunkon",modalWindow:"(modal window)",newWindow:"(új ablak)",allowAll:"Elfogadom az öszeset",denyAll:"Elutasítom",icon:"Cookies",fallback:"letiltott.",allowed:"atļauts",disallowed:"nav atļauts",ads:{title:"Reklámhálózat",details:"A hirdetési hálózatok bevételt teremthetnek azáltal, hogy értékesítik a webhelyen található hirdetési felületet"},analytic:{title:"Közönségmérés",details:"A közönségmérési szolgáltatások hasznos statisztikai adatokat generáltak a webhely fejlesztése érdekében."},social:{title:"Közösségi hálózatok",details:"A közösségi hálózatok javíthatják a webhely használhatóságát, és elősegíthetik annak promoválását a megosztások révén."},video:{title:"Videók",details:"A videomegosztó szolgáltatások hozzájárulnak hasznos multimédiához a webhelyen és növelik annak láthatóságát."},comment:{title:"Kommentek",details:"A megjegyzésfigyelők megkönnyítik a megjegyzések kitöltését és a spam elleni küzdelmet."},support:{title:"Támogatás",details:"A támogatási szolgáltatások lehetővé teszik, hogy kapcsolatba lépjen a webhely csapatával, és segítsen annak fejlesztésében."},api:{title:"APIk",details:"Az API-kat a szkriptek betöltésére használják: földrajzi helymeghatározás, keresőmotorok, fordítások..."},other:{title:"Más",details:"Szolgáltatások webtartalom megjelenítésére."},google:{title:"Konkrēta piekrišana Google pakalpojumiem",details:"Google var izmantot jūsu datus auditorijas mērījumiem, reklāmas veiktspējas novērtēšanai vai personalizētu reklāmu piedāvāšanai."},mandatoryTitle:"Kötelező sütik",mandatoryText:"A webhely tartalmának megjelenítéséhez és a felhasználói bejelentkezéshez sütiket használunk amiket nem lehet kikapcsolni.",save:"Saglabāt",ourpartners:"Mūsu partneri"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Szia! Ez a webhely átlátható, és lehetővé teszi a kívánt harmadik fél szolgáltatásainak kiválasztását",adblock_call:"A testreszabás megkezdéséhez állítsd le az adblockert, kérlek.",reload:"Oldal frissítése",alertBigScroll:"A görgetés folytatásával,",alertBigClick:"Ha folytatod a böngészést ezen oldalon,",alertBig:"engedélyezed a harmadik fél összes szolgáltatását.",alertBigPrivacy:"A webhely tartalmának megjelenítéséhez és a felhasználói élmény javításához cookie-kat használunk",alertSmall:"Szolgáltatások kezelése",personalize:"Beállítások",acceptAll:"OK, elfogadom",close:"Bezár",closeBanner:"Slēpt sīkfailu reklāmkarogu",privacyUrl:"Adatvédelmi irányelvek",all:"Összes szolgáltatás előnyben részesítése",info:"Személyi adataid védelme",disclaimer:"A harmadik fél szolgáltatásainak engedélyezésével elfogadja a sütiket és a megfelelő működésükhöz szükséges nyomkövetési technológiák használatát.",allow:"Elfogadom",deny:"Elutasítom",noCookie:"Ez a szolgáltatás nem használ sütit.",useCookie:"Ez a szolgáltatás telepíthető",useCookieCurrent:"Ez a szolgáltatás telepített",useNoCookie:"Ez a szolgáltatás nem telepített sütiket",more:"Olvass többet",source:"Tekintsd meg a hivatalos weboldalt",credit:"Cookie-kezelő: tarteaucitron.js",noServices:"Ez a weboldal nem használ olyan sütiket, amelyekhez a beleegyezésed szükséges.",toggleInfoBox:"Információk megjelenítése / elrejtése a süti-tárolással kapcsolatban",title:"Süti preferenciák",cookieDetail:"Süti adatok a következőhöz:",ourSite:"weboldalunkon",modalWindow:"(modal window)",newWindow:"(új ablak)",allowAll:"Elfogadom az öszeset",denyAll:"Elutasítom",icon:"Cookies",fallback:"letiltott.",allowed:"atļauts",disallowed:"nav atļauts",ads:{title:"Reklámhálózat",details:"A hirdetési hálózatok bevételt teremthetnek azáltal, hogy értékesítik a webhelyen található hirdetési felületet"},analytic:{title:"Közönségmérés",details:"A közönségmérési szolgáltatások hasznos statisztikai adatokat generáltak a webhely fejlesztése érdekében."},social:{title:"Közösségi hálózatok",details:"A közösségi hálózatok javíthatják a webhely használhatóságát, és elősegíthetik annak promoválását a megosztások révén."},video:{title:"Videók",details:"A videomegosztó szolgáltatások hozzájárulnak hasznos multimédiához a webhelyen és növelik annak láthatóságát."},comment:{title:"Kommentek",details:"A megjegyzésfigyelők megkönnyítik a megjegyzések kitöltését és a spam elleni küzdelmet."},support:{title:"Támogatás",details:"A támogatási szolgáltatások lehetővé teszik, hogy kapcsolatba lépjen a webhely csapatával, és segítsen annak fejlesztésében."},api:{title:"APIk",details:"Az API-kat a szkriptek betöltésére használják: földrajzi helymeghatározás, keresőmotorok, fordítások..."},other:{title:"Más",details:"Szolgáltatások webtartalom megjelenítésére."},google:{title:"Konkrēta piekrišana Google pakalpojumiem",details:"Google var izmantot jūsu datus auditorijas mērījumiem, reklāmas veiktspējas novērtēšanai vai personalizētu reklāmu piedāvāšanai."},mandatoryTitle:"Kötelező sütik",mandatoryText:"A webhely tartalmának megjelenítéséhez és a felhasználói bejelentkezéshez sütiket használunk amiket nem lehet kikapcsolni.",save:"Saglabāt",ourpartners:"Mūsu partneri"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.nl.js b/static/tarteaucitron/lang/tarteaucitron.nl.js index 163f3e6..048369a 100644 --- a/static/tarteaucitron/lang/tarteaucitron.nl.js +++ b/static/tarteaucitron/lang/tarteaucitron.nl.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Hallo! Deze site is transparant en laat u de services van derden kiezen die u wilt toestaan.", "adblock_call": "Schakel uw adblocker uit om te beginnen met aanpassen.", "reload": "Ververs de pagina", diff --git a/static/tarteaucitron/lang/tarteaucitron.nl.min.js b/static/tarteaucitron/lang/tarteaucitron.nl.min.js index 9f7fe90..37605df 100644 --- a/static/tarteaucitron/lang/tarteaucitron.nl.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.nl.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Hallo! Deze site is transparant en laat u de services van derden kiezen die u wilt toestaan.",adblock_call:"Schakel uw adblocker uit om te beginnen met aanpassen.",reload:"Ververs de pagina",alertBigScroll:"Door te blijven scrollen,",alertBigClick:"Als je doorgaat met het surfen op deze website,",alertBig:"sta je alle diensten van derden toe",alertBigPrivacy:"Deze site maakt gebruik van cookies en geeft u controle over wat u wilt activeren",alertSmall:"Beheer instellingen",personalize:"Personaliseer",acceptAll:"OK, accepteer alle",close:"Sluit",closeBanner:"Cookiesbanner verbergen",privacyUrl:"Privacybeleid",all:"Voorkeur voor alle diensten",info:"Bescherming van uw privacy",disclaimer:"Door deze services van derden toe te staan, accepteert u hun cookies en het gebruik van trackingtechnologieën die nodig zijn voor hun goede werking.",allow:"Toestaan",deny:"Weigeren",noCookie:"Deze service gebruikt geen cookie",useCookie:"Deze service kan worden geïnstalleerd",useCookieCurrent:"Deze service is geïnstalleerd",useNoCookie:"Deze service heeft geen cookies geïnstalleerd.",more:"Lees meer",source:"Bekijk de officiële website",credit:"Cookie manager mogelijk gemaakt door tarteaucitron.js",noServices:"Deze website maakt geen gebruik van cookies waarvoor uw toestemming nodig is.",fallback:"is uitgeschakeld.",allowed:"toegestaan",disallowed:"niet toegestaan",toggleInfoBox:"Toon/verberg informatie over cookie opslag",title:"Cookies beheer paneel",cookieDetail:"Cookie detail voor",ourSite:"op onze site",modalWindow:"(modaal venster)",newWindow:"(nieuw venster)",allowAll:"Sta alle cookies toe",denyAll:"Weiger alle cookies",icon:"Cookies",ads:{title:"Advertentienetwerk",details:"Advertentienetwerken kunnen inkomsten genereren door advertentieruimte op de site te verkopen."},analytic:{title:"Bezoekers meting",details:"De bezoekersdiensten voor het publiek worden gebruikt om nuttige statistieken te genereren om de site te verbeteren."},social:{title:"Sociale netwerken",details:"Sociale netwerken kunnen de bruikbaarheid van de site verbeteren en helpen deze via de shares te promoten."},video:{title:"Videos",details:"Video sharing-services helpen om rich media op de site toe te voegen en de zichtbaarheid ervan te vergroten."},comment:{title:"Comments",details:"Commentsmanagers faciliteren het indienen van opmerkingen en het bestrijden van spam."},support:{title:"Support",details:"Support diensten stellen u in staat contact op te nemen met het team van de site en helpen het te verbeteren."},api:{title:"APIs",details:"APIs worden gebruikt om scripts te laden: geolocatie, zoekmachines, vertalingen, ..."},other:{title:"Overig",details:"Diensten om webinhoud weer te geven."},google:{title:"Specifieke toestemming voor Google-services",details:"Google kan uw gegevens gebruiken voor publieksmeting, advertentieprestaties of om u gepersonaliseerde advertenties aan te bieden."},mandatoryTitle:"Verplichte cookies",mandatoryText:"Deze site maakt gebruik van cookies die nodig zijn voor de goede werking ervan en die niet kunnen worden gedeactiveerd.",save:"Opslaan",ourpartners:"Onze partners"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Hallo! Deze site is transparant en laat u de services van derden kiezen die u wilt toestaan.",adblock_call:"Schakel uw adblocker uit om te beginnen met aanpassen.",reload:"Ververs de pagina",alertBigScroll:"Door te blijven scrollen,",alertBigClick:"Als je doorgaat met het surfen op deze website,",alertBig:"sta je alle diensten van derden toe",alertBigPrivacy:"Deze site maakt gebruik van cookies en geeft u controle over wat u wilt activeren",alertSmall:"Beheer instellingen",personalize:"Personaliseer",acceptAll:"OK, accepteer alle",close:"Sluit",closeBanner:"Cookiesbanner verbergen",privacyUrl:"Privacybeleid",all:"Voorkeur voor alle diensten",info:"Bescherming van uw privacy",disclaimer:"Door deze services van derden toe te staan, accepteert u hun cookies en het gebruik van trackingtechnologieën die nodig zijn voor hun goede werking.",allow:"Toestaan",deny:"Weigeren",noCookie:"Deze service gebruikt geen cookie",useCookie:"Deze service kan worden geïnstalleerd",useCookieCurrent:"Deze service is geïnstalleerd",useNoCookie:"Deze service heeft geen cookies geïnstalleerd.",more:"Lees meer",source:"Bekijk de officiële website",credit:"Cookie manager mogelijk gemaakt door tarteaucitron.js",noServices:"Deze website maakt geen gebruik van cookies waarvoor uw toestemming nodig is.",fallback:"is uitgeschakeld.",allowed:"toegestaan",disallowed:"niet toegestaan",toggleInfoBox:"Toon/verberg informatie over cookie opslag",title:"Cookies beheer paneel",cookieDetail:"Cookie detail voor",ourSite:"op onze site",modalWindow:"(modaal venster)",newWindow:"(nieuw venster)",allowAll:"Sta alle cookies toe",denyAll:"Weiger alle cookies",icon:"Cookies",ads:{title:"Advertentienetwerk",details:"Advertentienetwerken kunnen inkomsten genereren door advertentieruimte op de site te verkopen."},analytic:{title:"Bezoekers meting",details:"De bezoekersdiensten voor het publiek worden gebruikt om nuttige statistieken te genereren om de site te verbeteren."},social:{title:"Sociale netwerken",details:"Sociale netwerken kunnen de bruikbaarheid van de site verbeteren en helpen deze via de shares te promoten."},video:{title:"Videos",details:"Video sharing-services helpen om rich media op de site toe te voegen en de zichtbaarheid ervan te vergroten."},comment:{title:"Comments",details:"Commentsmanagers faciliteren het indienen van opmerkingen en het bestrijden van spam."},support:{title:"Support",details:"Support diensten stellen u in staat contact op te nemen met het team van de site en helpen het te verbeteren."},api:{title:"APIs",details:"APIs worden gebruikt om scripts te laden: geolocatie, zoekmachines, vertalingen, ..."},other:{title:"Overig",details:"Diensten om webinhoud weer te geven."},google:{title:"Specifieke toestemming voor Google-services",details:"Google kan uw gegevens gebruiken voor publieksmeting, advertentieprestaties of om u gepersonaliseerde advertenties aan te bieden."},mandatoryTitle:"Verplichte cookies",mandatoryText:"Deze site maakt gebruik van cookies die nodig zijn voor de goede werking ervan en die niet kunnen worden gedeactiveerd.",save:"Opslaan",ourpartners:"Onze partners"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.no.js b/static/tarteaucitron/lang/tarteaucitron.no.js index eaf4461..7bc39a1 100644 --- a/static/tarteaucitron/lang/tarteaucitron.no.js +++ b/static/tarteaucitron/lang/tarteaucitron.no.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead" : "☝ 🍪", + "middleBarHead" : "☝️ 🍪", "adblock" : "Hei! Dette nettstedet er gjennomsiktig og lar deg kontrollere hvilke tredjeparts tjenester du vil tillate.", "adblock_call" : "For å gjøre endringer, vær så snill å deaktivere annonse-blokkering.", "reload" : "Oppdater side", diff --git a/static/tarteaucitron/lang/tarteaucitron.no.min.js b/static/tarteaucitron/lang/tarteaucitron.no.min.js index 8272feb..0b6b334 100644 --- a/static/tarteaucitron/lang/tarteaucitron.no.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.no.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Hei! Dette nettstedet er gjennomsiktig og lar deg kontrollere hvilke tredjeparts tjenester du vil tillate.",adblock_call:"For å gjøre endringer, vær så snill å deaktivere annonse-blokkering.",reload:"Oppdater side",alertBigScroll:"Ved å fortsette å scrolle,",alertBigClick:"Dersom du fortsetter å bruke dette nettstedet,",alertBig:"tillater du alle tredjeparts tjenester",alertBigPrivacy:"Dette nettstedet bruker informasjonskapsler og gir deg kontroll over hva du vil aktivere",alertSmall:"Administrer tjenester",personalize:"Personaliser",acceptAll:"OK, aksepter alt",close:"Steng",closeBanner:"Skjul informasjonskapselbanner",privacyUrl:"Personvernregler",all:"Preferanse for alle tjenester",info:"Beskytt ditt personvern",disclaimer:"Ved å tillate disse tredjepartstjenestene godtar du informasjonskapslene deres og bruken av sporingsteknologier som er nødvendige for at de skal fungere korrekt.",allow:"Tillat",deny:"Ikke tillat",noCookie:"Denne tjenesten bruker ikke informasjonskapsel.",useCookie:"Denne tjenesten kan installeres",useCookieCurrent:"Denne tjenesten er installert",useNoCookie:"TDenne tjenesten har ikke installert noen informasjonskapsel.",more:"Les mer",source:"Se den offisielle nettsiden",credit:"Informasjonskapsler styres av tarteaucitron.js",noServices:"Dette nettstedet bruker ingen informasjonskapsler som krever ditt samtykke.",toggleInfoBox:"Vis / skjul informasjon om lagring av informasjonskapsler",title:"Panel for informasjonskapsler",cookieDetail:"Informasjon om informasjonskapsler for",ourSite:"på nettstedet vårt",newWindow:"(nytt vindu)",allowAll:"Tillat alle informasjonskapsler",denyAll:"Nekt alle informasjonskapsler",icon:"Cookies",fallback:"er skrudd av.",allowed:"tillatt",disallowed:"ikke tillatt",ads:{title:"Annonsenettverk",details:"Annonsenettverket kan generere inntekter ved å selge reklameplass på nettstedet."},analytic:{title:"Målgruppe målinger",details:"Målgruppens målingstjenester ble brukt til å generere nyttig informasjon for å forbedre nettstedet."},social:{title:"Sosiale nettverk",details:"Sosiale nettverk kan forbedre brukervennligheten til nettstedet og bidra til å markedsføre det."},video:{title:"Video",details:"Videodelingstjenester hjelper til med å legge til rik media på nettstedet og øke synligheten."},comment:{title:"Kommentarer",details:"Kommentaradministratorer legger til rette for arkivering av kommentarer og bekjemper spam."},support:{title:"Brukerstøtte",details:"Brukerstøtte lar deg komme i kontakt med nettstedsteamet og bidra til å forbedre nettstedet."},api:{title:"API-er",details:"API-er brukes til å laste inn skript: geolokalisering, søkemotorer, oversettelser, ..."},other:{title:"Annet",details:"Tjenester for å vise innhold på nettet."},google:{title:"Spesifikt samtykke for Google-tjenester",details:"Google kan bruke dataene dine til måling av publikum, reklameprestasjoner eller til å tilby deg personlig tilpassede annonser."},mandatoryTitle:"Obligatoriske informasjonskapsler",mandatoryText:"Dette nettstedet bruker obligatoriske informasjonskapsler som er nødvendige for at nettstedet skal fungere som det skal. Disse kan ikke deaktiveres.",save:"Lagre",ourpartners:"Våre partnere"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Hei! Dette nettstedet er gjennomsiktig og lar deg kontrollere hvilke tredjeparts tjenester du vil tillate.",adblock_call:"For å gjøre endringer, vær så snill å deaktivere annonse-blokkering.",reload:"Oppdater side",alertBigScroll:"Ved å fortsette å scrolle,",alertBigClick:"Dersom du fortsetter å bruke dette nettstedet,",alertBig:"tillater du alle tredjeparts tjenester",alertBigPrivacy:"Dette nettstedet bruker informasjonskapsler og gir deg kontroll over hva du vil aktivere",alertSmall:"Administrer tjenester",personalize:"Personaliser",acceptAll:"OK, aksepter alt",close:"Steng",closeBanner:"Skjul informasjonskapselbanner",privacyUrl:"Personvernregler",all:"Preferanse for alle tjenester",info:"Beskytt ditt personvern",disclaimer:"Ved å tillate disse tredjepartstjenestene godtar du informasjonskapslene deres og bruken av sporingsteknologier som er nødvendige for at de skal fungere korrekt.",allow:"Tillat",deny:"Ikke tillat",noCookie:"Denne tjenesten bruker ikke informasjonskapsel.",useCookie:"Denne tjenesten kan installeres",useCookieCurrent:"Denne tjenesten er installert",useNoCookie:"TDenne tjenesten har ikke installert noen informasjonskapsel.",more:"Les mer",source:"Se den offisielle nettsiden",credit:"Informasjonskapsler styres av tarteaucitron.js",noServices:"Dette nettstedet bruker ingen informasjonskapsler som krever ditt samtykke.",toggleInfoBox:"Vis / skjul informasjon om lagring av informasjonskapsler",title:"Panel for informasjonskapsler",cookieDetail:"Informasjon om informasjonskapsler for",ourSite:"på nettstedet vårt",newWindow:"(nytt vindu)",allowAll:"Tillat alle informasjonskapsler",denyAll:"Nekt alle informasjonskapsler",icon:"Cookies",fallback:"er skrudd av.",allowed:"tillatt",disallowed:"ikke tillatt",ads:{title:"Annonsenettverk",details:"Annonsenettverket kan generere inntekter ved å selge reklameplass på nettstedet."},analytic:{title:"Målgruppe målinger",details:"Målgruppens målingstjenester ble brukt til å generere nyttig informasjon for å forbedre nettstedet."},social:{title:"Sosiale nettverk",details:"Sosiale nettverk kan forbedre brukervennligheten til nettstedet og bidra til å markedsføre det."},video:{title:"Video",details:"Videodelingstjenester hjelper til med å legge til rik media på nettstedet og øke synligheten."},comment:{title:"Kommentarer",details:"Kommentaradministratorer legger til rette for arkivering av kommentarer og bekjemper spam."},support:{title:"Brukerstøtte",details:"Brukerstøtte lar deg komme i kontakt med nettstedsteamet og bidra til å forbedre nettstedet."},api:{title:"API-er",details:"API-er brukes til å laste inn skript: geolokalisering, søkemotorer, oversettelser, ..."},other:{title:"Annet",details:"Tjenester for å vise innhold på nettet."},google:{title:"Spesifikt samtykke for Google-tjenester",details:"Google kan bruke dataene dine til måling av publikum, reklameprestasjoner eller til å tilby deg personlig tilpassede annonser."},mandatoryTitle:"Obligatoriske informasjonskapsler",mandatoryText:"Dette nettstedet bruker obligatoriske informasjonskapsler som er nødvendige for at nettstedet skal fungere som det skal. Disse kan ikke deaktiveres.",save:"Lagre",ourpartners:"Våre partnere"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.oc.js b/static/tarteaucitron/lang/tarteaucitron.oc.js index 5dbe80d..68e4aaa 100644 --- a/static/tarteaucitron/lang/tarteaucitron.oc.js +++ b/static/tarteaucitron/lang/tarteaucitron.oc.js @@ -2,7 +2,7 @@ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Bonjorn ! Aqueste site jòga la transparéncia e vos dòna la possibilitat de causir los servicis tèrces a activar.", "adblock_call": "Mercés de desactivar vòstre adblocker per començar la personalizacion.", "reload": "Recargar la pagina", diff --git a/static/tarteaucitron/lang/tarteaucitron.oc.min.js b/static/tarteaucitron/lang/tarteaucitron.oc.min.js index 490162c..9efe1dc 100644 --- a/static/tarteaucitron/lang/tarteaucitron.oc.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.oc.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Bonjorn ! Aqueste site jòga la transparéncia e vos dòna la possibilitat de causir los servicis tèrces a activar.",adblock_call:"Mercés de desactivar vòstre adblocker per començar la personalizacion.",reload:"Recargar la pagina",alertBigScroll:"En contunhant de defilar,",alertBigClick:"En seguissent vòstra navigacion,",alertBig:"acceptatz l'utilizacion de servicis tèrces que pòdon installar de cookies",alertBigPrivacy:"Aqueste site utiliza de cookies e vos dòna lo contraròtle sus çò que volètz activar",alertSmall:"Gestion dels servicis",acceptAll:"OK, tot acceptar",personalize:"Personalizar",close:"Tampar",closeBanner:"Rescondre la bandièra de cookies",privacyUrl:"Politica de confidencialitat",all:"Preferéncias per totes los servicis",info:"Proteccion de vòstra vida privada",disclaimer:"En autorizant aquestes servicis tèrces, acceptatz lo depaus e la lectura de cookies e l'utilizacion de tecnologias de seguiment necessaris a lor bon foncionament.",allow:"Autorizar",deny:"Interdire",noCookie:"Aqueste servici daissa pas cap de cookies.",useCookie:"Aqueste servici pòt daissar",useCookieCurrent:"Aqueste servici a daissat",useNoCookie:"Aqueste servici a pas daissat cap de cookies.",more:"Ne saber mai",source:"Veire lo site oficial",credit:"Gestion dels cookies per tarteaucitron.js",noServices:"Aqueste site utiliza pas cap de cookies que demandan vòstre consentiment.",toggleInfoBox:"Mostrar/amagar las informacions sus l'emmagazinatge dels cookies",title:"Panèl de gestion dels cookies",cookieDetail:"Detalh dels cookies",ourSite:"sus nòstre site",modalWindow:"(fenèstra de dialòg)",newWindow:"(fenèstra novèla)",allowAll:"Autorizar totes los cookies",denyAll:"Interdire totes los cookies",icon:"Cookies",fallback:"es desactivat.",allowed:"autorizat",disallowed:"interdit",ads:{title:"Regias publicitàrias",details:"Las regias publicitàrias permeton de gerir de revenguts en comercializant los espacis publicitaris del site."},analytic:{title:"Mesura d'audiéncia",details:"Los servicis de mesura d'audiéncia permeton de generar d'estatisticas de frequentacion utilas per melhorar lo site."},social:{title:"Malhums socials",details:"Los malhums socials permeton de melhorar la convivéncia del site e d'ajudar sa promocion via los partatges."},video:{title:"Vidèos",details:"Los servicis de partatge de vidèo permeton d'enriquir lo site de contengut multimèdia e aumentan sa visibilitat."},comment:{title:"Comentaris",details:"Los gestionaris de comentaris facilitan lo depaus de vòstres comentaris e lutan contra los messatges indesirables."},support:{title:"Assisténcia",details:"Los servicis d'assisténcia vos permeton de dintrar en contacte amb l'equipa del site e d'ajudar a son melhorament."},api:{title:"APIs",details:"Las APIs permeton de cargar de scripts : geolocalizacion, motors de recèrca, traduccions, ..."},other:{title:"Autre",details:"Servicis que cèrcan a afichar de contengut web."},google:{title:"Consentiment especific pels servicis de Google",details:"Google pòt utilizar vòstras donadas per la mesura de l'audiéncia, lo rendiment publicitari o per vos prepausar de publicitats personalizadas."},mandatoryTitle:"Cookies necessaris",mandatoryText:"Aqueste site utiliza de cookies necessaris pel seu pròpri foncionament que pòdon pas èsser desactivats.",save:"Enregistrar",ourpartners:"Nòstres partenaris"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Bonjorn ! Aqueste site jòga la transparéncia e vos dòna la possibilitat de causir los servicis tèrces a activar.",adblock_call:"Mercés de desactivar vòstre adblocker per començar la personalizacion.",reload:"Recargar la pagina",alertBigScroll:"En contunhant de defilar,",alertBigClick:"En seguissent vòstra navigacion,",alertBig:"acceptatz l'utilizacion de servicis tèrces que pòdon installar de cookies",alertBigPrivacy:"Aqueste site utiliza de cookies e vos dòna lo contraròtle sus çò que volètz activar",alertSmall:"Gestion dels servicis",acceptAll:"OK, tot acceptar",personalize:"Personalizar",close:"Tampar",closeBanner:"Rescondre la bandièra de cookies",privacyUrl:"Politica de confidencialitat",all:"Preferéncias per totes los servicis",info:"Proteccion de vòstra vida privada",disclaimer:"En autorizant aquestes servicis tèrces, acceptatz lo depaus e la lectura de cookies e l'utilizacion de tecnologias de seguiment necessaris a lor bon foncionament.",allow:"Autorizar",deny:"Interdire",noCookie:"Aqueste servici daissa pas cap de cookies.",useCookie:"Aqueste servici pòt daissar",useCookieCurrent:"Aqueste servici a daissat",useNoCookie:"Aqueste servici a pas daissat cap de cookies.",more:"Ne saber mai",source:"Veire lo site oficial",credit:"Gestion dels cookies per tarteaucitron.js",noServices:"Aqueste site utiliza pas cap de cookies que demandan vòstre consentiment.",toggleInfoBox:"Mostrar/amagar las informacions sus l'emmagazinatge dels cookies",title:"Panèl de gestion dels cookies",cookieDetail:"Detalh dels cookies",ourSite:"sus nòstre site",modalWindow:"(fenèstra de dialòg)",newWindow:"(fenèstra novèla)",allowAll:"Autorizar totes los cookies",denyAll:"Interdire totes los cookies",icon:"Cookies",fallback:"es desactivat.",allowed:"autorizat",disallowed:"interdit",ads:{title:"Regias publicitàrias",details:"Las regias publicitàrias permeton de gerir de revenguts en comercializant los espacis publicitaris del site."},analytic:{title:"Mesura d'audiéncia",details:"Los servicis de mesura d'audiéncia permeton de generar d'estatisticas de frequentacion utilas per melhorar lo site."},social:{title:"Malhums socials",details:"Los malhums socials permeton de melhorar la convivéncia del site e d'ajudar sa promocion via los partatges."},video:{title:"Vidèos",details:"Los servicis de partatge de vidèo permeton d'enriquir lo site de contengut multimèdia e aumentan sa visibilitat."},comment:{title:"Comentaris",details:"Los gestionaris de comentaris facilitan lo depaus de vòstres comentaris e lutan contra los messatges indesirables."},support:{title:"Assisténcia",details:"Los servicis d'assisténcia vos permeton de dintrar en contacte amb l'equipa del site e d'ajudar a son melhorament."},api:{title:"APIs",details:"Las APIs permeton de cargar de scripts : geolocalizacion, motors de recèrca, traduccions, ..."},other:{title:"Autre",details:"Servicis que cèrcan a afichar de contengut web."},google:{title:"Consentiment especific pels servicis de Google",details:"Google pòt utilizar vòstras donadas per la mesura de l'audiéncia, lo rendiment publicitari o per vos prepausar de publicitats personalizadas."},mandatoryTitle:"Cookies necessaris",mandatoryText:"Aqueste site utiliza de cookies necessaris pel seu pròpri foncionament que pòdon pas èsser desactivats.",save:"Enregistrar",ourpartners:"Nòstres partenaris"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.pl.js b/static/tarteaucitron/lang/tarteaucitron.pl.js index c4af32d..ce26b27 100644 --- a/static/tarteaucitron/lang/tarteaucitron.pl.js +++ b/static/tarteaucitron/lang/tarteaucitron.pl.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Witaj! Ta witryna oferuje daje mozliwość wyboru aktywacji usług zewnętrznych.", "adblock_call": "Prosze wylaczyc adblocker aby rozpoczac dostosowanie do potrzeb uzytkownika.", "reload": "Odswież stronę", diff --git a/static/tarteaucitron/lang/tarteaucitron.pl.min.js b/static/tarteaucitron/lang/tarteaucitron.pl.min.js index 8e95b96..a274f7f 100644 --- a/static/tarteaucitron/lang/tarteaucitron.pl.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.pl.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Witaj! Ta witryna oferuje daje mozliwość wyboru aktywacji usług zewnętrznych.",adblock_call:"Prosze wylaczyc adblocker aby rozpoczac dostosowanie do potrzeb uzytkownika.",reload:"Odswież stronę",alertBigScroll:"Poprzez kontynuowanie przewijania,",alertBigClick:"Pozostając na tej stronie",alertBig:"zgadzasz się na korzystanie ze wszystkich zewnetrzynych usług",alertBigPrivacy:"Ta witryna używa plików cookie i pozwala wybrać na które chcesz zezwolić",alertSmall:"Zarządzanie usługami",personalize:"Personalizacja",acceptAll:"OK, akceptuję wszystko",close:"zamknij",closeBanner:"Ukryj baner dotyczący plików cookie",privacyUrl:"Polityka prywatności",all:"Preferencja dla wszystkich usług",info:"Ochrona prywatności",disclaimer:"Zgadzając się na korzystanie z usług zewnętrznych, akceptujesz ich pliki cookies oraz wykorzystanie technologii śledzących, niezbędnych do ich funkcjonowania.",allow:"Zezwalaj",deny:"Odmów",noCookie:"Ta usługa nie korzysta z plików cookie.",useCookie:"Ta usługa może zainstalować pliki cookie",useCookieCurrent:"Ta usługa zainstalowała pliki cookie",useNoCookie:"Ta usługa nie zainstalowała żadnego pliku cookie.",more:"Więcej informacji",source:"Zobacz oficjalną stronę internetową",credit:"Cookies menadżer od tarteaucitron.js",noServices:"Ta strona nie wykorzystuje żadnych plików cookie wymagających Twojej zgody.",toggleInfoBox:"Pokaż/ukryj informacje o zapisie plików cookie",title:"Panel zarządzania plikami cookies",cookieDetail:"Szczegóły plików cookie dla",ourSite:"na naszej stronie",modalWindow:"(okno modalne)",newWindow:"(nowe okno)",allowAll:"Zezwól na wszystkie pliki cookies",denyAll:"Zablokuj wszystkie pliki cookies",icon:"Cookies",fallback:"jest nieaktywna.",allowed:"dozwolony",disallowed:"niedozwolone",ads:{title:"Sieć reklamowa",details:"Sieci reklamowe mogą generować przychody ze sprzedaży powierzchni reklamowej na stronie."},analytic:{title:"Pomiar oglądalności",details:"Usługi pomiaru oglądalności wykorzystywane są do generowania przydatnych statystyk potrzebnych w doskonaleniu strony."},social:{title:"Portale społecznościowe",details:"Sieci społecznościowe mogą poprawić użyteczność serwisu i pomóc w promocji za pośrednictwem udostępniania strony."},video:{title:"Filmy",details:"Usługa udostępniania wideo pomoże dodać multimedia do strony i zwiększyć jej ogladalność."},comment:{title:"Komentarze",details:"Zarządzanie komentarzami ułatwia komentowanie i zwalcza spam."},support:{title:"Pomoc",details:"Usługa pomocy technicznej pozwala skontaktować się z administratorem witryny i pomaga ją udoskonalić."},api:{title:"APIs",details:"APIs służą do ładowania skryptów: geolokalizacji, wyszukiwarek, tłumaczenia, ..."},other:{title:"Inne",details:"Usługi do wyświetlania treści internetowych."},google:{title:"Specyficzna zgoda na usługi Google",details:"Google może wykorzystywać Twoje dane do pomiaru zasięgu, wydajności reklamowej lub oferowania spersonalizowanych reklam."},mandatoryTitle:"obowiązkowe pliki cookie",mandatoryText:"Ta strona wykorzystuje pliki cookies niezbędne do jej prawidłowego funkcjonowania, których nie można wyłączyć.",save:"Zapisz",ourpartners:"Nasi partnerzy"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Witaj! Ta witryna oferuje daje mozliwość wyboru aktywacji usług zewnętrznych.",adblock_call:"Prosze wylaczyc adblocker aby rozpoczac dostosowanie do potrzeb uzytkownika.",reload:"Odswież stronę",alertBigScroll:"Poprzez kontynuowanie przewijania,",alertBigClick:"Pozostając na tej stronie",alertBig:"zgadzasz się na korzystanie ze wszystkich zewnetrzynych usług",alertBigPrivacy:"Ta witryna używa plików cookie i pozwala wybrać na które chcesz zezwolić",alertSmall:"Zarządzanie usługami",personalize:"Personalizacja",acceptAll:"OK, akceptuję wszystko",close:"zamknij",closeBanner:"Ukryj baner dotyczący plików cookie",privacyUrl:"Polityka prywatności",all:"Preferencja dla wszystkich usług",info:"Ochrona prywatności",disclaimer:"Zgadzając się na korzystanie z usług zewnętrznych, akceptujesz ich pliki cookies oraz wykorzystanie technologii śledzących, niezbędnych do ich funkcjonowania.",allow:"Zezwalaj",deny:"Odmów",noCookie:"Ta usługa nie korzysta z plików cookie.",useCookie:"Ta usługa może zainstalować pliki cookie",useCookieCurrent:"Ta usługa zainstalowała pliki cookie",useNoCookie:"Ta usługa nie zainstalowała żadnego pliku cookie.",more:"Więcej informacji",source:"Zobacz oficjalną stronę internetową",credit:"Cookies menadżer od tarteaucitron.js",noServices:"Ta strona nie wykorzystuje żadnych plików cookie wymagających Twojej zgody.",toggleInfoBox:"Pokaż/ukryj informacje o zapisie plików cookie",title:"Panel zarządzania plikami cookies",cookieDetail:"Szczegóły plików cookie dla",ourSite:"na naszej stronie",modalWindow:"(okno modalne)",newWindow:"(nowe okno)",allowAll:"Zezwól na wszystkie pliki cookies",denyAll:"Zablokuj wszystkie pliki cookies",icon:"Cookies",fallback:"jest nieaktywna.",allowed:"dozwolony",disallowed:"niedozwolone",ads:{title:"Sieć reklamowa",details:"Sieci reklamowe mogą generować przychody ze sprzedaży powierzchni reklamowej na stronie."},analytic:{title:"Pomiar oglądalności",details:"Usługi pomiaru oglądalności wykorzystywane są do generowania przydatnych statystyk potrzebnych w doskonaleniu strony."},social:{title:"Portale społecznościowe",details:"Sieci społecznościowe mogą poprawić użyteczność serwisu i pomóc w promocji za pośrednictwem udostępniania strony."},video:{title:"Filmy",details:"Usługa udostępniania wideo pomoże dodać multimedia do strony i zwiększyć jej ogladalność."},comment:{title:"Komentarze",details:"Zarządzanie komentarzami ułatwia komentowanie i zwalcza spam."},support:{title:"Pomoc",details:"Usługa pomocy technicznej pozwala skontaktować się z administratorem witryny i pomaga ją udoskonalić."},api:{title:"APIs",details:"APIs służą do ładowania skryptów: geolokalizacji, wyszukiwarek, tłumaczenia, ..."},other:{title:"Inne",details:"Usługi do wyświetlania treści internetowych."},google:{title:"Specyficzna zgoda na usługi Google",details:"Google może wykorzystywać Twoje dane do pomiaru zasięgu, wydajności reklamowej lub oferowania spersonalizowanych reklam."},mandatoryTitle:"obowiązkowe pliki cookie",mandatoryText:"Ta strona wykorzystuje pliki cookies niezbędne do jej prawidłowego funkcjonowania, których nie można wyłączyć.",save:"Zapisz",ourpartners:"Nasi partnerzy"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.pt.js b/static/tarteaucitron/lang/tarteaucitron.pt.js index ff1394b..463bc0c 100644 --- a/static/tarteaucitron/lang/tarteaucitron.pt.js +++ b/static/tarteaucitron/lang/tarteaucitron.pt.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Olá! Em uma ação de transparência, este site permite que você escolha quais serviços de terceiros ativar.", "adblock_call": "Por favor, desative seu bloqueador de publicidades para poder personalizar.", "reload": "Atualizar esta página", diff --git a/static/tarteaucitron/lang/tarteaucitron.pt.min.js b/static/tarteaucitron/lang/tarteaucitron.pt.min.js index b08b07c..e7a6342 100644 --- a/static/tarteaucitron/lang/tarteaucitron.pt.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.pt.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Olá! Em uma ação de transparência, este site permite que você escolha quais serviços de terceiros ativar.",adblock_call:"Por favor, desative seu bloqueador de publicidades para poder personalizar.",reload:"Atualizar esta página",alertBigScroll:"Ao continuar a rolar,",alertBigClick:"Se você continuar a navegação neste site,",alertBig:"você estará aceitando todos os serviços de terceiros",alertBigPrivacy:"Este site utiliza cookies e dá-lhe controle sobre o que quer ativar",alertSmall:"Gerenciar serviços",personalize:"Personalizar",acceptAll:"OK, aceitar tudo",close:"Fechar",closeBanner:"Ocultar banner de cookies",privacyUrl:"Política de Privacidade",all:"Definições dos serviços",info:"Proteger sua privacidade",disclaimer:"Ao aceitar os serviços terceiros, você aceita o uso de cookies em conjunto a tecnologias de rastreamento que lhe são necessárias para funcionar",allow:"Autorizar",deny:"Recusar",noCookie:"Este serviço não usa cookies.",useCookie:"Este serviço pode instalar",useCookieCurrent:"Este serviço instalou",useNoCookie:"Este serviço não instalou nenhum cookie.",more:"Ler mais",source:"Ver o site oficial",credit:"Gerenciador de cookies por tarteaucitron.js",noServices:"Este site não utiliza nenhum cookie que exija o seu consentimento.",toggleInfoBox:"Mostrar/ocultar informações sobre armazenamento de cookies",title:"Painel de Gerenciamento de Cookies",cookieDetail:"Detalhe do Cookie",ourSite:"em nosso site",modalWindow:"(janela modal)",newWindow:"(janela nova)",allowAll:"Permite todos os cookies",denyAll:"Proíbe todos cookies",icon:"Cookies",fallback:"está desativado.",allowed:"permitido",disallowed:"não permitido",ads:{title:"Redes de anúncios",details:"As redes de anúncios podem gerar receitas com a venda de espaço publicitário no site."},analytic:{title:"Medição de audiência",details:"Serviços de medição de audiência usados para gerar estatísticas no intuito de melhorar o site."},social:{title:"Redes sociais",details:"Redes sociais podem melhorar a utilização do site e ajudar a promovê-lo via compartilhamentos."},video:{title:"Vídeos",details:"Serviços de compartilhamento de vídeo adicionam medias no site a aumentam sua visibilidade."},comment:{title:"Comentários",details:"Gerenciadores de comentários facilitam o sistema de comentários e lutam contra o spam."},support:{title:"Suporte",details:"Serviços de suporte lhe ajudam a entrar em contato com a equipe de suporte."},api:{title:"APIs",details:"APIs são usadas para carregar scripts: geolocalização, motores de pesquisa, traduções..."},other:{title:"De outros",details:"Serviços para exibir conteúdo da web."},google:{title:"Consentimento específico para os serviços do Google",details:"O Google pode usar seus dados para medição de audiência, desempenho de publicidade ou para oferecer anúncios personalizados."},mandatoryTitle:"Cookies obrigatórios",mandatoryText:"Este site utiliza alguns cookies que são necessários ao seu funcionamento e não podem ser desativados.",save:"Guardar",ourpartners:"Os nossos parceiros"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Olá! Em uma ação de transparência, este site permite que você escolha quais serviços de terceiros ativar.",adblock_call:"Por favor, desative seu bloqueador de publicidades para poder personalizar.",reload:"Atualizar esta página",alertBigScroll:"Ao continuar a rolar,",alertBigClick:"Se você continuar a navegação neste site,",alertBig:"você estará aceitando todos os serviços de terceiros",alertBigPrivacy:"Este site utiliza cookies e dá-lhe controle sobre o que quer ativar",alertSmall:"Gerenciar serviços",personalize:"Personalizar",acceptAll:"OK, aceitar tudo",close:"Fechar",closeBanner:"Ocultar banner de cookies",privacyUrl:"Política de Privacidade",all:"Definições dos serviços",info:"Proteger sua privacidade",disclaimer:"Ao aceitar os serviços terceiros, você aceita o uso de cookies em conjunto a tecnologias de rastreamento que lhe são necessárias para funcionar",allow:"Autorizar",deny:"Recusar",noCookie:"Este serviço não usa cookies.",useCookie:"Este serviço pode instalar",useCookieCurrent:"Este serviço instalou",useNoCookie:"Este serviço não instalou nenhum cookie.",more:"Ler mais",source:"Ver o site oficial",credit:"Gerenciador de cookies por tarteaucitron.js",noServices:"Este site não utiliza nenhum cookie que exija o seu consentimento.",toggleInfoBox:"Mostrar/ocultar informações sobre armazenamento de cookies",title:"Painel de Gerenciamento de Cookies",cookieDetail:"Detalhe do Cookie",ourSite:"em nosso site",modalWindow:"(janela modal)",newWindow:"(janela nova)",allowAll:"Permite todos os cookies",denyAll:"Proíbe todos cookies",icon:"Cookies",fallback:"está desativado.",allowed:"permitido",disallowed:"não permitido",ads:{title:"Redes de anúncios",details:"As redes de anúncios podem gerar receitas com a venda de espaço publicitário no site."},analytic:{title:"Medição de audiência",details:"Serviços de medição de audiência usados para gerar estatísticas no intuito de melhorar o site."},social:{title:"Redes sociais",details:"Redes sociais podem melhorar a utilização do site e ajudar a promovê-lo via compartilhamentos."},video:{title:"Vídeos",details:"Serviços de compartilhamento de vídeo adicionam medias no site a aumentam sua visibilidade."},comment:{title:"Comentários",details:"Gerenciadores de comentários facilitam o sistema de comentários e lutam contra o spam."},support:{title:"Suporte",details:"Serviços de suporte lhe ajudam a entrar em contato com a equipe de suporte."},api:{title:"APIs",details:"APIs são usadas para carregar scripts: geolocalização, motores de pesquisa, traduções..."},other:{title:"De outros",details:"Serviços para exibir conteúdo da web."},google:{title:"Consentimento específico para os serviços do Google",details:"O Google pode usar seus dados para medição de audiência, desempenho de publicidade ou para oferecer anúncios personalizados."},mandatoryTitle:"Cookies obrigatórios",mandatoryText:"Este site utiliza alguns cookies que são necessários ao seu funcionamento e não podem ser desativados.",save:"Guardar",ourpartners:"Os nossos parceiros"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.ro.js b/static/tarteaucitron/lang/tarteaucitron.ro.js index 54ad1d3..b9b24d5 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ro.js +++ b/static/tarteaucitron/lang/tarteaucitron.ro.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Buna! Acest site este transparent și vă permite să alegeți serviciile terță parte pe care doriți să le permiteți.", "adblock_call": "Dezactivați-vă adblocker-ul pentru a începe personalizarea.", "reload": "Reincarca Pagina", diff --git a/static/tarteaucitron/lang/tarteaucitron.ro.min.js b/static/tarteaucitron/lang/tarteaucitron.ro.min.js index a3c2f4f..9da0ec3 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ro.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.ro.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Buna! Acest site este transparent și vă permite să alegeți serviciile terță parte pe care doriți să le permiteți.",adblock_call:"Dezactivați-vă adblocker-ul pentru a începe personalizarea.",reload:"Reincarca Pagina",alertBigScroll:"Continuând să defilați,",alertBigClick:"Dacă continuați să răsfoiți acest site,",alertBig:"permiteți tuturor serviciilor terță parte",alertBigPrivacy:"Acest site utilizează cookie-uri și vă oferă control asupra a ceea ce doriți să activați",alertSmall:"Gestionați serviciile",personalize:"Personalizați",acceptAll:"OK, acceptați-le pe toate",close:"Închide",closeBanner:"Ascunde bannerul cookie-urilor",privacyUrl:"Politica de confidentialitate",all:"Preferință pentru toate serviciile",info:"Protejați-vă confidențialitatea",disclaimer:"Permițând acestor servicii terțe părți să acceptați cookie-urile și utilizarea tehnologiilor de urmărire necesare pentru buna funcționare a acestora.",allow:"Permite",deny:"Refuza",noCookie:"Acest serviciu nu utilizează modul cookie.",useCookie:"Acest serviciu se poate instala",useCookieCurrent:"Acest serviciu a fost instalat",useNoCookie:"Acest serviciu nu a instalat niciun cookie.",more:"Citeste mai mult",source:"Vizualizați site-ul oficial",credit:"Cookie manager de către tarteaucitron.js",noServices:"Acest site web nu utilizează niciun cookie care necesită acordul dumneavoastră.",toggleInfoBox:"Afișați / ascundeți informații despre stocarea modulelor cookie",title:"Panoul de gestionare a panourilor cookie",cookieDetail:"Detaliile cookie pentru",ourSite:"pe site-ul nostru",modalWindow:"(fereastra modală)",newWindow:"(fereastră nouă)",allowAll:"Permiteți toate cookie-urile",denyAll:"Respinge toate cookie-urile",icon:"Cookies",fallback:"este dezactivat.",allowed:"permis",disallowed:"nepermis",ads:{title:"Rețea de publicitate",details:"Rețelele publicitare pot genera venituri prin vânzarea de spațiu publicitar pe site."},analytic:{title:"Măsurarea audienței",details:"Serviciile de măsurare a audienței utilizate pentru a genera participarea la statistici utile pentru îmbunătățirea site-ului."},social:{title:"Retele sociale",details:"Rețelele sociale pot îmbunătăți gradul de utilizare a site-ului și pot ajuta să îl promoveze prin intermediul acțiunilor."},video:{title:"Videoclipuri",details:"Serviciile de partajare video ajută la adăugarea de materiale media pe site și la creșterea vizibilității acestora."},comment:{title:"Comentarii",details:"Managerii de comentarii facilitează depunerea de comentarii și lupta împotriva spamului."},support:{title:"Susţinere",details:"Serviciile de asistență vă permit să contactați echipa site-ului și să vă ajutați să îl îmbunătățiți."},api:{title:"APIs",details:"API-urile sunt folosite pentru a încărca scripturi: geolocație, motoare de căutare, traduceri, ..."},other:{title:"Alte",details:"Servicii pentru afișarea conținutului web."},google:{title:"Consentiment specific pentru serviciile Google",details:"Google poate utiliza datele dvs. pentru măsurarea audienței, performanța publicitară sau pentru a vă oferi anunțuri personalizate."},mandatoryTitle:"Cookie-uri obligatorii",mandatoryText:"Acest site utilizează cookie-uri necesare pentru buna funcționare, care nu pot fi dezactivate.",save:"Salvare",ourpartners:"Partenerii noștri"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Buna! Acest site este transparent și vă permite să alegeți serviciile terță parte pe care doriți să le permiteți.",adblock_call:"Dezactivați-vă adblocker-ul pentru a începe personalizarea.",reload:"Reincarca Pagina",alertBigScroll:"Continuând să defilați,",alertBigClick:"Dacă continuați să răsfoiți acest site,",alertBig:"permiteți tuturor serviciilor terță parte",alertBigPrivacy:"Acest site utilizează cookie-uri și vă oferă control asupra a ceea ce doriți să activați",alertSmall:"Gestionați serviciile",personalize:"Personalizați",acceptAll:"OK, acceptați-le pe toate",close:"Închide",closeBanner:"Ascunde bannerul cookie-urilor",privacyUrl:"Politica de confidentialitate",all:"Preferință pentru toate serviciile",info:"Protejați-vă confidențialitatea",disclaimer:"Permițând acestor servicii terțe părți să acceptați cookie-urile și utilizarea tehnologiilor de urmărire necesare pentru buna funcționare a acestora.",allow:"Permite",deny:"Refuza",noCookie:"Acest serviciu nu utilizează modul cookie.",useCookie:"Acest serviciu se poate instala",useCookieCurrent:"Acest serviciu a fost instalat",useNoCookie:"Acest serviciu nu a instalat niciun cookie.",more:"Citeste mai mult",source:"Vizualizați site-ul oficial",credit:"Cookie manager de către tarteaucitron.js",noServices:"Acest site web nu utilizează niciun cookie care necesită acordul dumneavoastră.",toggleInfoBox:"Afișați / ascundeți informații despre stocarea modulelor cookie",title:"Panoul de gestionare a panourilor cookie",cookieDetail:"Detaliile cookie pentru",ourSite:"pe site-ul nostru",modalWindow:"(fereastra modală)",newWindow:"(fereastră nouă)",allowAll:"Permiteți toate cookie-urile",denyAll:"Respinge toate cookie-urile",icon:"Cookies",fallback:"este dezactivat.",allowed:"permis",disallowed:"nepermis",ads:{title:"Rețea de publicitate",details:"Rețelele publicitare pot genera venituri prin vânzarea de spațiu publicitar pe site."},analytic:{title:"Măsurarea audienței",details:"Serviciile de măsurare a audienței utilizate pentru a genera participarea la statistici utile pentru îmbunătățirea site-ului."},social:{title:"Retele sociale",details:"Rețelele sociale pot îmbunătăți gradul de utilizare a site-ului și pot ajuta să îl promoveze prin intermediul acțiunilor."},video:{title:"Videoclipuri",details:"Serviciile de partajare video ajută la adăugarea de materiale media pe site și la creșterea vizibilității acestora."},comment:{title:"Comentarii",details:"Managerii de comentarii facilitează depunerea de comentarii și lupta împotriva spamului."},support:{title:"Susţinere",details:"Serviciile de asistență vă permit să contactați echipa site-ului și să vă ajutați să îl îmbunătățiți."},api:{title:"APIs",details:"API-urile sunt folosite pentru a încărca scripturi: geolocație, motoare de căutare, traduceri, ..."},other:{title:"Alte",details:"Servicii pentru afișarea conținutului web."},google:{title:"Consentiment specific pentru serviciile Google",details:"Google poate utiliza datele dvs. pentru măsurarea audienței, performanța publicitară sau pentru a vă oferi anunțuri personalizate."},mandatoryTitle:"Cookie-uri obligatorii",mandatoryText:"Acest site utilizează cookie-uri necesare pentru buna funcționare, care nu pot fi dezactivate.",save:"Salvare",ourpartners:"Partenerii noștri"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.ru.js b/static/tarteaucitron/lang/tarteaucitron.ru.js index 50bef9a..7d2be77 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ru.js +++ b/static/tarteaucitron/lang/tarteaucitron.ru.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Привет! Этот сайт совершенно открытый и позволяет вам выбрать сервисы третьих лиц, которым вы хотите дать доступ.", "adblock_call": "Пожалуйста дезактивируйте АдБлокер чтобы начать настройку.", "reload": "Перезагрузите страницу", diff --git a/static/tarteaucitron/lang/tarteaucitron.ru.min.js b/static/tarteaucitron/lang/tarteaucitron.ru.min.js index 912fcd6..1e8a1f6 100644 --- a/static/tarteaucitron/lang/tarteaucitron.ru.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.ru.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Привет! Этот сайт совершенно открытый и позволяет вам выбрать сервисы третьих лиц, которым вы хотите дать доступ.",adblock_call:"Пожалуйста дезактивируйте АдБлокер чтобы начать настройку.",reload:"Перезагрузите страницу",alertBigScroll:"Продолжая прокрутки",alertBigClick:"Если вы продолжаете использовать сайт",alertBig:"вы позволяете сервисы третьих лиц",alertBigPrivacy:"Этот сайт использует кукис и позволяет вам контролировать сервисы которые вы хотите активировать",alertSmall:"Настройка сервисов",personalize:"Персонализировать",acceptAll:"Ок, все активировать",close:"Закрыть",closeBanner:"Скрыть баннер cookie",privacyUrl:"Политика конфиденциальности",all:"Преференция всем сервисам",info:"Защитить вашу конфиденциальность",disclaimer:"Активирование сервисов третьих лиц позволяет использование их кукис и технолоний отслеживания необходимых для их функционирования",allow:"Позволить",deny:"Не позволить",noCookie:"Этот сервис не использует кукис.",useCookie:"Этот сервис может быть инсталирован",useCookieCurrent:"Этот сервис инсталирован",useNoCookie:"Этот сервис не использует кукис.",more:"Подробнее",source:"Посетите официальный сайт",credit:"Кукис манаджер tarteaucitron.js",noServices:"Этот веб-сайт не использует файлы cookie, требующие вашего согласия.",toggleInfoBox:"Show/hide informations about cookie storage",title:"Панель управления cookies",cookieDetail:"Информация о файлах cookie для",ourSite:"на нашем сайте",modalWindow:"(модальное окно)",newWindow:"(новое окно)",allowAll:"Разрешить использование cookies",denyAll:"Запретить использование cookies",icon:"Cookies",fallback:"Деактивирован.",allowed:"разрешается",disallowed:"запрещено",ads:{title:"Рекламная сеть",details:"Мы позволяем вам аренду нашей рекламной сети."},analytic:{title:"Измерение аудиенции",details:"Измерение аудиенции сайта для статистики помогают улучшить предлагаемый сервис."},social:{title:"Социальная сеть",details:"Социальная сеть сайтов помогает улучшить предлагаемый сервис через обмен информации."},video:{title:"Видео",details:"Обмен видео информации позволяет улучшить сервис и увеличит траффик сайта."},comment:{title:"Комментарии",details:"Манаджер комментариев позволяет обмен информации и борьбу со спамом."},support:{title:"Помощь",details:"Помощь позволяет вам контактировать напрямую сайт манаджер и улучшить предлагаемый сервис."},api:{title:"АПИ",details:"АПИ используются для загрузки скриптов; геолокация, поисковый мотор и переводы..."},other:{title:"Другие",details:"Службы для отображения веб-контента."},google:{title:"Специфическое согласие на услуги Google",details:"Google может использовать ваши данные для измерения аудитории, оценки рекламной эффективности или предоставления вам персонализированных рекламных объявлений."},mandatoryTitle:"Обязательные файлы cookie",mandatoryText:"Этот сайт использует файлы cookie, необходимые для его правильной работы, которые нельзя отключить.",save:"Сохранить",ourpartners:"Наши партнеры"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Привет! Этот сайт совершенно открытый и позволяет вам выбрать сервисы третьих лиц, которым вы хотите дать доступ.",adblock_call:"Пожалуйста дезактивируйте АдБлокер чтобы начать настройку.",reload:"Перезагрузите страницу",alertBigScroll:"Продолжая прокрутки",alertBigClick:"Если вы продолжаете использовать сайт",alertBig:"вы позволяете сервисы третьих лиц",alertBigPrivacy:"Этот сайт использует кукис и позволяет вам контролировать сервисы которые вы хотите активировать",alertSmall:"Настройка сервисов",personalize:"Персонализировать",acceptAll:"Ок, все активировать",close:"Закрыть",closeBanner:"Скрыть баннер cookie",privacyUrl:"Политика конфиденциальности",all:"Преференция всем сервисам",info:"Защитить вашу конфиденциальность",disclaimer:"Активирование сервисов третьих лиц позволяет использование их кукис и технолоний отслеживания необходимых для их функционирования",allow:"Позволить",deny:"Не позволить",noCookie:"Этот сервис не использует кукис.",useCookie:"Этот сервис может быть инсталирован",useCookieCurrent:"Этот сервис инсталирован",useNoCookie:"Этот сервис не использует кукис.",more:"Подробнее",source:"Посетите официальный сайт",credit:"Кукис манаджер tarteaucitron.js",noServices:"Этот веб-сайт не использует файлы cookie, требующие вашего согласия.",toggleInfoBox:"Show/hide informations about cookie storage",title:"Панель управления cookies",cookieDetail:"Информация о файлах cookie для",ourSite:"на нашем сайте",modalWindow:"(модальное окно)",newWindow:"(новое окно)",allowAll:"Разрешить использование cookies",denyAll:"Запретить использование cookies",icon:"Cookies",fallback:"Деактивирован.",allowed:"разрешается",disallowed:"запрещено",ads:{title:"Рекламная сеть",details:"Мы позволяем вам аренду нашей рекламной сети."},analytic:{title:"Измерение аудиенции",details:"Измерение аудиенции сайта для статистики помогают улучшить предлагаемый сервис."},social:{title:"Социальная сеть",details:"Социальная сеть сайтов помогает улучшить предлагаемый сервис через обмен информации."},video:{title:"Видео",details:"Обмен видео информации позволяет улучшить сервис и увеличит траффик сайта."},comment:{title:"Комментарии",details:"Манаджер комментариев позволяет обмен информации и борьбу со спамом."},support:{title:"Помощь",details:"Помощь позволяет вам контактировать напрямую сайт манаджер и улучшить предлагаемый сервис."},api:{title:"АПИ",details:"АПИ используются для загрузки скриптов; геолокация, поисковый мотор и переводы..."},other:{title:"Другие",details:"Службы для отображения веб-контента."},google:{title:"Специфическое согласие на услуги Google",details:"Google может использовать ваши данные для измерения аудитории, оценки рекламной эффективности или предоставления вам персонализированных рекламных объявлений."},mandatoryTitle:"Обязательные файлы cookie",mandatoryText:"Этот сайт использует файлы cookie, необходимые для его правильной работы, которые нельзя отключить.",save:"Сохранить",ourpartners:"Наши партнеры"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.se.js b/static/tarteaucitron/lang/tarteaucitron.se.js index e6fccc6..09567f3 100644 --- a/static/tarteaucitron/lang/tarteaucitron.se.js +++ b/static/tarteaucitron/lang/tarteaucitron.se.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Hej! Denna webbplats är transparent och låter dig välja de tredjeparts tjänster du vill tillåta.", "adblock_call": "Inaktivera din adblock för att börja anpassa.", "reload": "Uppdatera sidan", diff --git a/static/tarteaucitron/lang/tarteaucitron.se.min.js b/static/tarteaucitron/lang/tarteaucitron.se.min.js index 649b8b8..88e9a41 100644 --- a/static/tarteaucitron/lang/tarteaucitron.se.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.se.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Hej! Denna webbplats är transparent och låter dig välja de tredjeparts tjänster du vill tillåta.",adblock_call:"Inaktivera din adblock för att börja anpassa.",reload:"Uppdatera sidan",alertBigScroll:"Genom att fortsätta rulla,",alertBigClick:"Om du fortsätter att surfa på denna webbplats,",alertBig:"du tillåter alla tjänster från tredje part",alertBigPrivacy:"Denna webbplats använder cookies och ger dig kontroll över vad du vill aktivera",alertSmall:"Hantera tjänster",personalize:"Personifiera",acceptAll:"OK, acceptera allt",close:"Stänga",closeBanner:"Dölj cookies banner",privacyUrl:"Integritetspolicy",all:"Preferens för alla tjänster",info:"Skydda din integritet",disclaimer:"Genom att tillåta dessa tjänster från tredje part accepterar du deras cookies och användningen av spårningsteknologier som är nödvändiga för att de ska fungera korrekt.",allow:"Tillåta",deny:"Förneka",noCookie:"Den här tjänsten använder inte cookie.",useCookie:"Den här tjänsten kan installeras",useCookieCurrent:"Den här tjänsten har installerat",useNoCookie:"Den här tjänsten har inte installerat någon cookie.",more:"Läs mer",source:"Visa den officiella webbplatsen",credit:"Cookies manager av tarteaucitron.js",noServices:"Denna webbplats använder ingen cookie som kräver ditt samtycke.",toggleInfoBox:"Visa / dölj information om lagring av cookies",title:"Cookie- hanteringspanel",cookieDetail:"cookie- detalj för",ourSite:"på vår webbplats",modalWindow:"(modalt fönster)",newWindow:"(nytt fönster)",allowAll:"Tillåt alla cookie",denyAll:"Neka alla cookies",icon:"Cookies",fallback:"är ur funktion.",allowed:"tillåtet",disallowed:"nekad",ads:{title:"Annonsnätverk",details:"Annonsnätverk kan generera intäkter genom att sälja annonsutrymme på webbplatsen."},analytic:{title:"Publikmätning",details:"Publikmätningstjänster som används för att generera användbar statistik närvaro för att förbättra webbplatsen."},social:{title:"Sociala nätverk",details:"Sociala nätverk kan förbättra användbarheten på webbplatsen och bidra till att marknadsföra den via aktierna."},video:{title:"videoklipp",details:"Videodelningstjänster hjälper till att lägga till rika medier på webbplatsen och öka synligheten."},comment:{title:"Коментари",details:"Kommentarhanterare underlättar inlämning av kommentarer och bekämpar skräppost."},support:{title:"Stöd",details:"Supporttjänster gör att du kan komma i kontakt med webbplatsteamet och hjälpa dig att förbättra det."},api:{title:"APIs",details:"APIs: er används för att ladda skript: geolocation, sökmotorer, översättningar, ..."},other:{title:"Övrig",details:"Tjänster för att visa webbinnehåll."},google:{title:"Specifikt samtycke för Googles tjänster",details:"Google kan använda dina data för publikmätning, reklamprestanda eller för att erbjuda dig personligt anpassade annonser."},mandatoryTitle:"Dutkámus čáhci",mandatoryText:"Dát ođđa veahkehuhtii lea geavahuvvon dutkámus čáhciid buoremus boahtteárvvuin, guhte ii leat deaktiverejuvvon.",save:"Spara",ourpartners:"Våra partners"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Hej! Denna webbplats är transparent och låter dig välja de tredjeparts tjänster du vill tillåta.",adblock_call:"Inaktivera din adblock för att börja anpassa.",reload:"Uppdatera sidan",alertBigScroll:"Genom att fortsätta rulla,",alertBigClick:"Om du fortsätter att surfa på denna webbplats,",alertBig:"du tillåter alla tjänster från tredje part",alertBigPrivacy:"Denna webbplats använder cookies och ger dig kontroll över vad du vill aktivera",alertSmall:"Hantera tjänster",personalize:"Personifiera",acceptAll:"OK, acceptera allt",close:"Stänga",closeBanner:"Dölj cookies banner",privacyUrl:"Integritetspolicy",all:"Preferens för alla tjänster",info:"Skydda din integritet",disclaimer:"Genom att tillåta dessa tjänster från tredje part accepterar du deras cookies och användningen av spårningsteknologier som är nödvändiga för att de ska fungera korrekt.",allow:"Tillåta",deny:"Förneka",noCookie:"Den här tjänsten använder inte cookie.",useCookie:"Den här tjänsten kan installeras",useCookieCurrent:"Den här tjänsten har installerat",useNoCookie:"Den här tjänsten har inte installerat någon cookie.",more:"Läs mer",source:"Visa den officiella webbplatsen",credit:"Cookies manager av tarteaucitron.js",noServices:"Denna webbplats använder ingen cookie som kräver ditt samtycke.",toggleInfoBox:"Visa / dölj information om lagring av cookies",title:"Cookie- hanteringspanel",cookieDetail:"cookie- detalj för",ourSite:"på vår webbplats",modalWindow:"(modalt fönster)",newWindow:"(nytt fönster)",allowAll:"Tillåt alla cookie",denyAll:"Neka alla cookies",icon:"Cookies",fallback:"är ur funktion.",allowed:"tillåtet",disallowed:"nekad",ads:{title:"Annonsnätverk",details:"Annonsnätverk kan generera intäkter genom att sälja annonsutrymme på webbplatsen."},analytic:{title:"Publikmätning",details:"Publikmätningstjänster som används för att generera användbar statistik närvaro för att förbättra webbplatsen."},social:{title:"Sociala nätverk",details:"Sociala nätverk kan förbättra användbarheten på webbplatsen och bidra till att marknadsföra den via aktierna."},video:{title:"videoklipp",details:"Videodelningstjänster hjälper till att lägga till rika medier på webbplatsen och öka synligheten."},comment:{title:"Коментари",details:"Kommentarhanterare underlättar inlämning av kommentarer och bekämpar skräppost."},support:{title:"Stöd",details:"Supporttjänster gör att du kan komma i kontakt med webbplatsteamet och hjälpa dig att förbättra det."},api:{title:"APIs",details:"APIs: er används för att ladda skript: geolocation, sökmotorer, översättningar, ..."},other:{title:"Övrig",details:"Tjänster för att visa webbinnehåll."},google:{title:"Specifikt samtycke för Googles tjänster",details:"Google kan använda dina data för publikmätning, reklamprestanda eller för att erbjuda dig personligt anpassade annonser."},mandatoryTitle:"Dutkámus čáhci",mandatoryText:"Dát ođđa veahkehuhtii lea geavahuvvon dutkámus čáhciid buoremus boahtteárvvuin, guhte ii leat deaktiverejuvvon.",save:"Spara",ourpartners:"Våra partners"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.sk.js b/static/tarteaucitron/lang/tarteaucitron.sk.js index a560f01..b2be68c 100644 --- a/static/tarteaucitron/lang/tarteaucitron.sk.js +++ b/static/tarteaucitron/lang/tarteaucitron.sk.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Ahoj! Táto stránka je transparentná a umožňuje vám vybrať služby tretích strán, ktoré chcete povoliť.", "adblock_call": "Prosím, vypnite blokovanie reklám k začatiu prispôsobovania", "reload": "Obnovte stránku", diff --git a/static/tarteaucitron/lang/tarteaucitron.sk.min.js b/static/tarteaucitron/lang/tarteaucitron.sk.min.js index e5574ea..e3ffdda 100644 --- a/static/tarteaucitron/lang/tarteaucitron.sk.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.sk.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Ahoj! Táto stránka je transparentná a umožňuje vám vybrať služby tretích strán, ktoré chcete povoliť.",adblock_call:"Prosím, vypnite blokovanie reklám k začatiu prispôsobovania",reload:"Obnovte stránku",alertBigScroll:"Pokračovaním v posúvaní,",alertBigClick:"Ak budete pokračovať v prehliadaní tejto webovej stránky,",alertBig:"povoľujete všetky služby tretích strán",alertBigPrivacy:"Táto stránka používa cookies a dáva vám kontrolu nad tým, čo chcete aktivovať",alertSmall:"Spravovať služby",personalize:"Prispôsobiť",acceptAll:"OK, prijať všetko",close:"Zatvoriť",closeBanner:"Skryť banner so súbormi cookie",privacyUrl:"Zásady ochrany osobných údajov",all:"Prednosť pre všetky služby",info:"Ochrana vášho súkromia",disclaimer:"Povolením týchto služieb tretích strán, prijímate ich cookies a používanie sledovacích technológií potrebných pre ich správne fungovanie.",allow:"Povoliť",deny:"Odmietnúť",noCookie:"Táto služba nepoužíva cookies.",useCookie:"Túto službu je možné nainštalovať",useCookieCurrent:"Táto služba je nainštalovaná",useNoCookie:"Táto služba nenainštalovala žiadny súbor cookie.",more:"Čítaj viac",source:"Pozrite si oficiálnu webovú stránku",credit:"Správca súborov cookie od tarteaucitron.js",noServices:"Táto webová stránka nepoužíva žiadny súbor cookie, ktorý vyžaduje váš súhlas.",toggleInfoBox:"Zobraziť/skryť informácie o ukladaní súborov cookie",title:"Panel riadenia súborov cookie",cookieDetail:"Podrobnosti súboru cookie pre",ourSite:"na našich stránkach",modalWindow:"(modálne okno)",newWindow:"(nové okno)",allowAll:"Povoľte všetky súbory cookie",denyAll:"Odmietnuť všetky súbory cookie",icon:"Cookies",fallback:"je zakázané.",allowed:"povolený",disallowed:"nepovolený",ads:{title:"Reklamná sieť",details:"Reklamné siete môžu generovať príjmy predajom reklamného priestoru na webe."},analytic:{title:"Meranie publika",details:"Služby merania publika používané na generovanie užitočnej štatistickej účasti na zlepšenie stránky."},social:{title:"Sociálne siete",details:"Sociálne siete môžu zlepšiť použiteľnosť stránky a pomôcť ju propagovať prostredníctvom akcií."},video:{title:"Videá",details:"Služby zdieľania videa pomáhajú pridať na web bohatý obsah a zvýšiť jeho viditeľnosť."},comment:{title:"Komentáre",details:"Manažéri komentárov uľahčujú zadávanie komentárov a bojujú proti spamu."},support:{title:"Podpora",details:"Podporné služby vám umožňujú skontaktovať sa s tímom stránok a pomôcť vám ich vylepšiť."},api:{title:"APIs",details:"Rozhrania API sa používajú na načítanie skriptov: geolokácia, vyhľadávače, preklady, ..."},other:{title:"Ostatné",details:"Služby na zobrazovanie webového obsahu."},google:{title:"Špecifický súhlas so službami Google",details:"Google môže použiť vaše údaje na meranie publika, reklamnú efektivitu alebo na vám ponúkanie personalizovaných reklám."},mandatoryTitle:"Povinné súbory cookie",mandatoryText:"Táto stránka používa súbory cookie, ktoré sú nevyhnutné pre jej správne fungovanie a nemôžu byť deaktivované.",save:"Uložiť",ourpartners:"Naši partneri"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Ahoj! Táto stránka je transparentná a umožňuje vám vybrať služby tretích strán, ktoré chcete povoliť.",adblock_call:"Prosím, vypnite blokovanie reklám k začatiu prispôsobovania",reload:"Obnovte stránku",alertBigScroll:"Pokračovaním v posúvaní,",alertBigClick:"Ak budete pokračovať v prehliadaní tejto webovej stránky,",alertBig:"povoľujete všetky služby tretích strán",alertBigPrivacy:"Táto stránka používa cookies a dáva vám kontrolu nad tým, čo chcete aktivovať",alertSmall:"Spravovať služby",personalize:"Prispôsobiť",acceptAll:"OK, prijať všetko",close:"Zatvoriť",closeBanner:"Skryť banner so súbormi cookie",privacyUrl:"Zásady ochrany osobných údajov",all:"Prednosť pre všetky služby",info:"Ochrana vášho súkromia",disclaimer:"Povolením týchto služieb tretích strán, prijímate ich cookies a používanie sledovacích technológií potrebných pre ich správne fungovanie.",allow:"Povoliť",deny:"Odmietnúť",noCookie:"Táto služba nepoužíva cookies.",useCookie:"Túto službu je možné nainštalovať",useCookieCurrent:"Táto služba je nainštalovaná",useNoCookie:"Táto služba nenainštalovala žiadny súbor cookie.",more:"Čítaj viac",source:"Pozrite si oficiálnu webovú stránku",credit:"Správca súborov cookie od tarteaucitron.js",noServices:"Táto webová stránka nepoužíva žiadny súbor cookie, ktorý vyžaduje váš súhlas.",toggleInfoBox:"Zobraziť/skryť informácie o ukladaní súborov cookie",title:"Panel riadenia súborov cookie",cookieDetail:"Podrobnosti súboru cookie pre",ourSite:"na našich stránkach",modalWindow:"(modálne okno)",newWindow:"(nové okno)",allowAll:"Povoľte všetky súbory cookie",denyAll:"Odmietnuť všetky súbory cookie",icon:"Cookies",fallback:"je zakázané.",allowed:"povolený",disallowed:"nepovolený",ads:{title:"Reklamná sieť",details:"Reklamné siete môžu generovať príjmy predajom reklamného priestoru na webe."},analytic:{title:"Meranie publika",details:"Služby merania publika používané na generovanie užitočnej štatistickej účasti na zlepšenie stránky."},social:{title:"Sociálne siete",details:"Sociálne siete môžu zlepšiť použiteľnosť stránky a pomôcť ju propagovať prostredníctvom akcií."},video:{title:"Videá",details:"Služby zdieľania videa pomáhajú pridať na web bohatý obsah a zvýšiť jeho viditeľnosť."},comment:{title:"Komentáre",details:"Manažéri komentárov uľahčujú zadávanie komentárov a bojujú proti spamu."},support:{title:"Podpora",details:"Podporné služby vám umožňujú skontaktovať sa s tímom stránok a pomôcť vám ich vylepšiť."},api:{title:"APIs",details:"Rozhrania API sa používajú na načítanie skriptov: geolokácia, vyhľadávače, preklady, ..."},other:{title:"Ostatné",details:"Služby na zobrazovanie webového obsahu."},google:{title:"Špecifický súhlas so službami Google",details:"Google môže použiť vaše údaje na meranie publika, reklamnú efektivitu alebo na vám ponúkanie personalizovaných reklám."},mandatoryTitle:"Povinné súbory cookie",mandatoryText:"Táto stránka používa súbory cookie, ktoré sú nevyhnutné pre jej správne fungovanie a nemôžu byť deaktivované.",save:"Uložiť",ourpartners:"Naši partneri"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.sq.js b/static/tarteaucitron/lang/tarteaucitron.sq.js index 19366de..ff27a5c 100644 --- a/static/tarteaucitron/lang/tarteaucitron.sq.js +++ b/static/tarteaucitron/lang/tarteaucitron.sq.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Përshëndetje! Kjo faqe është transparente dhe ju lejon të zgjidhni shërbimet e palëve të treta që dëshironi të lejoni.", "adblock_call": "Ju lutemi çaktivizoni bllokuesin tuaj të reklamave për të filluar personalizimin.", "reload": "Rifresko faqen", diff --git a/static/tarteaucitron/lang/tarteaucitron.sq.min.js b/static/tarteaucitron/lang/tarteaucitron.sq.min.js index 391ba08..b165892 100644 --- a/static/tarteaucitron/lang/tarteaucitron.sq.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.sq.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Përshëndetje! Kjo faqe është transparente dhe ju lejon të zgjidhni shërbimet e palëve të treta që dëshironi të lejoni.",adblock_call:"Ju lutemi çaktivizoni bllokuesin tuaj të reklamave për të filluar personalizimin.",reload:"Rifresko faqen",alertBigScroll:"Duke vazhduar të lëvizni poshtë,",alertBigClick:"Nëse vazhdoni të shfletoni këtë faqe interneti,",alertBig:"ju po lejoni të gjitha shërbimet e palëve të treta",alertBigPrivacy:"Kjo faqe përdor cookies dhe ju jep kontroll mbi atë që dëshironi të aktivizoni",alertSmall:"Menaxho shërbimet",personalize:"Personalizo",acceptAll:"OK, prano të gjitha",close:"Mbyll",closeBanner:"Fshih banerin e cookies",privacyUrl:"Politika e privatësisë",all:"Preferencat për të gjitha shërbimet",info:"Mbrojtja e privatësisë suaj",disclaimer:"Duke lejuar këto shërbime të palëve të treta, ju pranoni cookies e tyre dhe përdorimin e teknologjive të gjurmimit të nevojshme për funksionimin e tyre të duhur.",allow:"Lejo",deny:"Refuzo",noCookie:"Ky shërbim nuk përdor cookie.",useCookie:"Ky shërbim mund të instalojë",useCookieCurrent:"Ky shërbim ka instaluar",useNoCookie:"Ky shërbim nuk ka instaluar asnjë cookie.",more:"Lexo më shumë",source:"Shiko faqen zyrtare",credit:"Menaxher i cookies nga tarteaucitron.js",noServices:"Kjo faqe nuk përdor asnjë cookie që kërkon pranimin tuaj.",toggleInfoBox:"Shfaq/fshih informacionet në lidhje me ruajtjen e cookies",title:"Paneli i menaxhimit të cookies",cookieDetail:"Detajet e cookies për",ourSite:"në faqen tonë",modalWindow:"(dritare modale)",newWindow:"(dritare e re)",allowAll:"Lejo të gjitha cookies",denyAll:"Refuzo të gjitha cookies",icon:"Cookies",fallback:"është çaktivizuar.",allowed:"lejuar",disallowed:"nuk lejohet",ads:{title:"Rrjeti i reklamave",details:"Rrjetet e reklamave mund të gjenerojnë të ardhura duke shitur hapësirë reklamimi në faqe."},analytic:{title:"Matja e audiencës",details:"Shërbimet e matjes së audiencës përdoren për të gjeneruar statistika të dobishme për të përmirësuar faqen."},social:{title:"Rrjetet sociale",details:"Rrjetet sociale mund të përmirësojnë përdorshmërinë e faqes dhe të ndihmojnë në promovimin e saj përmes shpërndarjeve."},video:{title:"Videot",details:"Shërbimet e ndarjes së videove ndihmojnë në shtimin e mediave të pasura në faqe dhe rrisin dukshmërinë e saj."},comment:{title:"Komentet",details:"Menaxherët e komenteve lehtësojnë paraqitjen e komenteve dhe luftojnë kundër spam-it."},support:{title:"Mbështetja",details:"Shërbimet e mbështetjes ju lejojnë të kontaktoni me ekipin e faqes dhe të ndihmoni në përmirësimin e saj."},api:{title:"APIs",details:"APIs përdoren për të ngarkuar skripte: gjeolokalizim, motorë kërkimi, përkthime, ..."},other:{title:"Të tjera",details:"Shërbime për të shfaqur përmbajtje web."},google:{title:"Pëlqim specifik për shërbimet Google",details:"Google mund të përdorë të dhënat tuaja për matjen e audiencës, performancën e reklamave, ose për t'ju ofruar reklama të personalizuara."},mandatoryTitle:"Cookies të detyrueshme",mandatoryText:"Kjo faqe përdor cookies të nevojshme për funksionimin e saj të duhur të cilat nuk mund të çaktivizohen.",save:"Ruaj",ourpartners:"Partnerët tanë"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Përshëndetje! Kjo faqe është transparente dhe ju lejon të zgjidhni shërbimet e palëve të treta që dëshironi të lejoni.",adblock_call:"Ju lutemi çaktivizoni bllokuesin tuaj të reklamave për të filluar personalizimin.",reload:"Rifresko faqen",alertBigScroll:"Duke vazhduar të lëvizni poshtë,",alertBigClick:"Nëse vazhdoni të shfletoni këtë faqe interneti,",alertBig:"ju po lejoni të gjitha shërbimet e palëve të treta",alertBigPrivacy:"Kjo faqe përdor cookies dhe ju jep kontroll mbi atë që dëshironi të aktivizoni",alertSmall:"Menaxho shërbimet",personalize:"Personalizo",acceptAll:"OK, prano të gjitha",close:"Mbyll",closeBanner:"Fshih banerin e cookies",privacyUrl:"Politika e privatësisë",all:"Preferencat për të gjitha shërbimet",info:"Mbrojtja e privatësisë suaj",disclaimer:"Duke lejuar këto shërbime të palëve të treta, ju pranoni cookies e tyre dhe përdorimin e teknologjive të gjurmimit të nevojshme për funksionimin e tyre të duhur.",allow:"Lejo",deny:"Refuzo",noCookie:"Ky shërbim nuk përdor cookie.",useCookie:"Ky shërbim mund të instalojë",useCookieCurrent:"Ky shërbim ka instaluar",useNoCookie:"Ky shërbim nuk ka instaluar asnjë cookie.",more:"Lexo më shumë",source:"Shiko faqen zyrtare",credit:"Menaxher i cookies nga tarteaucitron.js",noServices:"Kjo faqe nuk përdor asnjë cookie që kërkon pranimin tuaj.",toggleInfoBox:"Shfaq/fshih informacionet në lidhje me ruajtjen e cookies",title:"Paneli i menaxhimit të cookies",cookieDetail:"Detajet e cookies për",ourSite:"në faqen tonë",modalWindow:"(dritare modale)",newWindow:"(dritare e re)",allowAll:"Lejo të gjitha cookies",denyAll:"Refuzo të gjitha cookies",icon:"Cookies",fallback:"është çaktivizuar.",allowed:"lejuar",disallowed:"nuk lejohet",ads:{title:"Rrjeti i reklamave",details:"Rrjetet e reklamave mund të gjenerojnë të ardhura duke shitur hapësirë reklamimi në faqe."},analytic:{title:"Matja e audiencës",details:"Shërbimet e matjes së audiencës përdoren për të gjeneruar statistika të dobishme për të përmirësuar faqen."},social:{title:"Rrjetet sociale",details:"Rrjetet sociale mund të përmirësojnë përdorshmërinë e faqes dhe të ndihmojnë në promovimin e saj përmes shpërndarjeve."},video:{title:"Videot",details:"Shërbimet e ndarjes së videove ndihmojnë në shtimin e mediave të pasura në faqe dhe rrisin dukshmërinë e saj."},comment:{title:"Komentet",details:"Menaxherët e komenteve lehtësojnë paraqitjen e komenteve dhe luftojnë kundër spam-it."},support:{title:"Mbështetja",details:"Shërbimet e mbështetjes ju lejojnë të kontaktoni me ekipin e faqes dhe të ndihmoni në përmirësimin e saj."},api:{title:"APIs",details:"APIs përdoren për të ngarkuar skripte: gjeolokalizim, motorë kërkimi, përkthime, ..."},other:{title:"Të tjera",details:"Shërbime për të shfaqur përmbajtje web."},google:{title:"Pëlqim specifik për shërbimet Google",details:"Google mund të përdorë të dhënat tuaja për matjen e audiencës, performancën e reklamave, ose për t'ju ofruar reklama të personalizuara."},mandatoryTitle:"Cookies të detyrueshme",mandatoryText:"Kjo faqe përdor cookies të nevojshme për funksionimin e saj të duhur të cilat nuk mund të çaktivizohen.",save:"Ruaj",ourpartners:"Partnerët tanë"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.sv.js b/static/tarteaucitron/lang/tarteaucitron.sv.js index 7143ef5..a287be8 100644 --- a/static/tarteaucitron/lang/tarteaucitron.sv.js +++ b/static/tarteaucitron/lang/tarteaucitron.sv.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Hej! Denna webbplats är transparent och låter dig välja de tredjeparts tjänster du vill tillåta.", "adblock_call": "Inaktivera din adblock för att börja anpassa.", "reload": "Uppdatera sidan", diff --git a/static/tarteaucitron/lang/tarteaucitron.sv.min.js b/static/tarteaucitron/lang/tarteaucitron.sv.min.js index fbd3f1a..d81c4dc 100644 --- a/static/tarteaucitron/lang/tarteaucitron.sv.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.sv.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Hej! Denna webbplats är transparent och låter dig välja de tredjeparts tjänster du vill tillåta.",adblock_call:"Inaktivera din adblock för att börja anpassa.",reload:"Uppdatera sidan",alertBigScroll:"Genom att fortsätta rulla,",alertBigClick:"Om du fortsätter att surfa på denna webbplats,",alertBig:"du tillåter alla tjänster från tredje part",alertBigPrivacy:"Denna webbplats använder cookies och ger dig kontroll över vad du vill aktivera",alertSmall:"Hantera tjänster",personalize:"Personifiera",acceptAll:"OK, acceptera allt",close:"Stänga",closeBanner:"Dölj cookies banner",privacyUrl:"Integritetspolicy",all:"Preferens för alla tjänster",info:"Skydda din integritet",disclaimer:"Genom att tillåta dessa tjänster från tredje part accepterar du deras cookies och användningen av spårningsteknologier som är nödvändiga för att de ska fungera korrekt.",allow:"Tillåta",deny:"Förneka",noCookie:"Den här tjänsten använder inte cookie.",useCookie:"Den här tjänsten kan installeras",useCookieCurrent:"Den här tjänsten har installerat",useNoCookie:"Den här tjänsten har inte installerat någon cookie.",more:"Läs mer",source:"Visa den officiella webbplatsen",credit:"Cookies manager av tarteaucitron.js",noServices:"Denna webbplats använder ingen cookie som kräver ditt samtycke.",toggleInfoBox:"Visa / dölj information om lagring av cookies",title:"Cookie- hanteringspanel",cookieDetail:"cookie- detalj för",ourSite:"på vår webbplats",modalWindow:"(modalt fönster)",newWindow:"(nytt fönster)",allowAll:"Tillåt alla cookie",denyAll:"Neka alla cookies",icon:"Cookies",fallback:"är ur funktion.",allowed:"tillåtet",disallowed:"nekad",ads:{title:"Annonsnätverk",details:"Annonsnätverk kan generera intäkter genom att sälja annonsutrymme på webbplatsen."},analytic:{title:"Publikmätning",details:"Publikmätningstjänster som används för att generera användbar statistik närvaro för att förbättra webbplatsen."},social:{title:"Sociala nätverk",details:"Sociala nätverk kan förbättra användbarheten på webbplatsen och bidra till att marknadsföra den via aktierna."},video:{title:"videoklipp",details:"Videodelningstjänster hjälper till att lägga till rika medier på webbplatsen och öka synligheten."},comment:{title:"Коментари",details:"Kommentarhanterare underlättar inlämning av kommentarer och bekämpar skräppost."},support:{title:"Stöd",details:"Supporttjänster gör att du kan komma i kontakt med webbplatsteamet och hjälpa dig att förbättra det."},api:{title:"APIs",details:"APIs: er används för att ladda skript: geolocation, sökmotorer, översättningar, ..."},other:{title:"Övrig",details:"Tjänster för att visa webbinnehåll."},google:{title:"Specifikt samtycke för Googles tjänster",details:"Google kan använda dina data för publikmätning, reklamprestanda eller för att erbjuda dig personligt anpassade annonser."},mandatoryTitle:"Obligatoriska kakor",mandatoryText:"Denna webbplats använder nödvändiga kakor för dess korrekta funktion, och dessa kan inte inaktiveras.",save:"Spara",ourpartners:"Våra partners"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Hej! Denna webbplats är transparent och låter dig välja de tredjeparts tjänster du vill tillåta.",adblock_call:"Inaktivera din adblock för att börja anpassa.",reload:"Uppdatera sidan",alertBigScroll:"Genom att fortsätta rulla,",alertBigClick:"Om du fortsätter att surfa på denna webbplats,",alertBig:"du tillåter alla tjänster från tredje part",alertBigPrivacy:"Denna webbplats använder cookies och ger dig kontroll över vad du vill aktivera",alertSmall:"Hantera tjänster",personalize:"Personifiera",acceptAll:"OK, acceptera allt",close:"Stänga",closeBanner:"Dölj cookies banner",privacyUrl:"Integritetspolicy",all:"Preferens för alla tjänster",info:"Skydda din integritet",disclaimer:"Genom att tillåta dessa tjänster från tredje part accepterar du deras cookies och användningen av spårningsteknologier som är nödvändiga för att de ska fungera korrekt.",allow:"Tillåta",deny:"Förneka",noCookie:"Den här tjänsten använder inte cookie.",useCookie:"Den här tjänsten kan installeras",useCookieCurrent:"Den här tjänsten har installerat",useNoCookie:"Den här tjänsten har inte installerat någon cookie.",more:"Läs mer",source:"Visa den officiella webbplatsen",credit:"Cookies manager av tarteaucitron.js",noServices:"Denna webbplats använder ingen cookie som kräver ditt samtycke.",toggleInfoBox:"Visa / dölj information om lagring av cookies",title:"Cookie- hanteringspanel",cookieDetail:"cookie- detalj för",ourSite:"på vår webbplats",modalWindow:"(modalt fönster)",newWindow:"(nytt fönster)",allowAll:"Tillåt alla cookie",denyAll:"Neka alla cookies",icon:"Cookies",fallback:"är ur funktion.",allowed:"tillåtet",disallowed:"nekad",ads:{title:"Annonsnätverk",details:"Annonsnätverk kan generera intäkter genom att sälja annonsutrymme på webbplatsen."},analytic:{title:"Publikmätning",details:"Publikmätningstjänster som används för att generera användbar statistik närvaro för att förbättra webbplatsen."},social:{title:"Sociala nätverk",details:"Sociala nätverk kan förbättra användbarheten på webbplatsen och bidra till att marknadsföra den via aktierna."},video:{title:"videoklipp",details:"Videodelningstjänster hjälper till att lägga till rika medier på webbplatsen och öka synligheten."},comment:{title:"Коментари",details:"Kommentarhanterare underlättar inlämning av kommentarer och bekämpar skräppost."},support:{title:"Stöd",details:"Supporttjänster gör att du kan komma i kontakt med webbplatsteamet och hjälpa dig att förbättra det."},api:{title:"APIs",details:"APIs: er används för att ladda skript: geolocation, sökmotorer, översättningar, ..."},other:{title:"Övrig",details:"Tjänster för att visa webbinnehåll."},google:{title:"Specifikt samtycke för Googles tjänster",details:"Google kan använda dina data för publikmätning, reklamprestanda eller för att erbjuda dig personligt anpassade annonser."},mandatoryTitle:"Obligatoriska kakor",mandatoryText:"Denna webbplats använder nödvändiga kakor för dess korrekta funktion, och dessa kan inte inaktiveras.",save:"Spara",ourpartners:"Våra partners"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.tr.js b/static/tarteaucitron/lang/tarteaucitron.tr.js index 179ffa1..be2c36c 100644 --- a/static/tarteaucitron/lang/tarteaucitron.tr.js +++ b/static/tarteaucitron/lang/tarteaucitron.tr.js @@ -2,7 +2,7 @@ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Merhaba! Bu site şeffaflıkla oynar ve size etkinleştirilecek üçüncü taraf hizmetleri seçeneği sunar.", "adblock_call": "Kişiselleştirmeye başlamak için lütfen reklam engelleyicinizi devre dışı bırakın.", "reload": "Sayfayı yeniden yükle", diff --git a/static/tarteaucitron/lang/tarteaucitron.tr.min.js b/static/tarteaucitron/lang/tarteaucitron.tr.min.js index 010d105..e77c88d 100644 --- a/static/tarteaucitron/lang/tarteaucitron.tr.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.tr.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Merhaba! Bu site şeffaflıkla oynar ve size etkinleştirilecek üçüncü taraf hizmetleri seçeneği sunar.",adblock_call:"Kişiselleştirmeye başlamak için lütfen reklam engelleyicinizi devre dışı bırakın.",reload:"Sayfayı yeniden yükle",alertBigScroll:"Kaydırma devam edien,",alertBigClick:"Navigasyonunuza devam ederek,",alertBig:"çerez yükleyebilecek üçüncü taraf hizmetlerinin kullanımını kabul edersiniz",alertBigPrivacy:"Bu site çerezleri kullanır ve etkinleştirmek istediklerinizi kontrol etmenizi sağlar",alertSmall:"Hizmet yönetimi",acceptAll:"evet, her şeyi kabul edin",personalize:"kişiselleştirmek",close:"kapat",closeBanner:"Çerez banner'ını gizle",privacyUrl:"Gizlilik Politikası",all:"Tüm hizmetler için tercihler",info:"Gizliliğinin korunması",disclaimer:"Bu üçüncü taraf hizmetlerini yetkilendirerek, çerezlerin depolanmasını ve okunmasını ve düzgün çalışması için gerekli izleme teknolojilerinin kullanımını kabul ediyorsunuz.",allow:"izin",deny:"yasak",noCookie:"Bu hizmet çerez yerleştirmez.",useCookie:"Bu hizmet para yatırabilir",useCookieCurrent:"Bu hizmet sunuldu",useNoCookie:"Bu hizmet herhangi bir çerez yerleştirmedi.",more:"Daha fazlasını öğrenin",source:"web sitesine bakın",credit:"Çerez yönetimi tarteaucitron.js",noServices:"Bu site, onayınızı gerektiren hiçbir çerez kullanmıyor.",toggleInfoBox:"Çerezlerin depolanmasıyla ilgili bilgileri göster / gizle",title:"Çerez yönetimi paneli",cookieDetail:"Ayrıntı çerezleri",ourSite:"sitemizde",modalWindow:"(kalıcı pencere)",newWindow:"(yeni pencere)",allowAll:"Tüm çerezlere izin verin",denyAll:"Tüm çerezleri yasaklayın",icon:"Cookies",fallback:"devre dışı.",allowed:"izin verildi",disallowed:"izin verilmeyen",ads:{title:"Reklam yönetimi",details:"Reklam ajansları, sitedeki reklam alanını pazarlayarak gelir elde etmenizi sağlar."},analytic:{title:"Kitle ölçümü",details:"Kitle ölçüm hizmetleri, siteyi geliştirmek için yararlı katılım istatistikleri oluşturur."},social:{title:"Sosyal Medya",details:"Sosyal ağlar sitenin kullanım kolaylığını geliştirir ve paylaşım yoluyla sitenin tanıtımına yardımcı olur."},video:{title:"Videolar",details:"Video paylaşım hizmetleri siteyi multimedya içeriğiyle zenginleştirir ve görünürlüğünü artırır.\n"+"\n"},comment:{title:"yorumlar\n",details:"Yorum yöneticileri yorumlarınızın gönderilmesini kolaylaştırır ve spam ile mücadele eder."},support:{title:"destek",details:"Destek hizmetleri, site ekibiyle iletişim kurmanıza ve ekibinizi geliştirmenize yardımcı olur.\n"+"\n"},api:{title:"APIs",details:"APIs komut dosyalarının yüklenmesine izin verir: coğrafi konum, arama motorları, çeviriler, ..."},other:{title:"diğer\n",details:"Web içeriğini görüntüleme hizmetleri."},google:{title:"Google hizmetleri için özel onay",details:"Google, verilerinizi izleyici ölçümü, reklam performansı veya size kişiselleştirilmiş reklamlar sunmak için kullanabilir."},mandatoryTitle:"Zorunlu Çerezler",mandatoryText:"Bu site, düzgün çalışması için gerekli olan ve devre dışı bırakılamayan çerezleri kullanır.",save:"Kaydet",ourpartners:"İş ortaklarımız"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Merhaba! Bu site şeffaflıkla oynar ve size etkinleştirilecek üçüncü taraf hizmetleri seçeneği sunar.",adblock_call:"Kişiselleştirmeye başlamak için lütfen reklam engelleyicinizi devre dışı bırakın.",reload:"Sayfayı yeniden yükle",alertBigScroll:"Kaydırma devam edien,",alertBigClick:"Navigasyonunuza devam ederek,",alertBig:"çerez yükleyebilecek üçüncü taraf hizmetlerinin kullanımını kabul edersiniz",alertBigPrivacy:"Bu site çerezleri kullanır ve etkinleştirmek istediklerinizi kontrol etmenizi sağlar",alertSmall:"Hizmet yönetimi",acceptAll:"evet, her şeyi kabul edin",personalize:"kişiselleştirmek",close:"kapat",closeBanner:"Çerez banner'ını gizle",privacyUrl:"Gizlilik Politikası",all:"Tüm hizmetler için tercihler",info:"Gizliliğinin korunması",disclaimer:"Bu üçüncü taraf hizmetlerini yetkilendirerek, çerezlerin depolanmasını ve okunmasını ve düzgün çalışması için gerekli izleme teknolojilerinin kullanımını kabul ediyorsunuz.",allow:"izin",deny:"yasak",noCookie:"Bu hizmet çerez yerleştirmez.",useCookie:"Bu hizmet para yatırabilir",useCookieCurrent:"Bu hizmet sunuldu",useNoCookie:"Bu hizmet herhangi bir çerez yerleştirmedi.",more:"Daha fazlasını öğrenin",source:"web sitesine bakın",credit:"Çerez yönetimi tarteaucitron.js",noServices:"Bu site, onayınızı gerektiren hiçbir çerez kullanmıyor.",toggleInfoBox:"Çerezlerin depolanmasıyla ilgili bilgileri göster / gizle",title:"Çerez yönetimi paneli",cookieDetail:"Ayrıntı çerezleri",ourSite:"sitemizde",modalWindow:"(kalıcı pencere)",newWindow:"(yeni pencere)",allowAll:"Tüm çerezlere izin verin",denyAll:"Tüm çerezleri yasaklayın",icon:"Cookies",fallback:"devre dışı.",allowed:"izin verildi",disallowed:"izin verilmeyen",ads:{title:"Reklam yönetimi",details:"Reklam ajansları, sitedeki reklam alanını pazarlayarak gelir elde etmenizi sağlar."},analytic:{title:"Kitle ölçümü",details:"Kitle ölçüm hizmetleri, siteyi geliştirmek için yararlı katılım istatistikleri oluşturur."},social:{title:"Sosyal Medya",details:"Sosyal ağlar sitenin kullanım kolaylığını geliştirir ve paylaşım yoluyla sitenin tanıtımına yardımcı olur."},video:{title:"Videolar",details:"Video paylaşım hizmetleri siteyi multimedya içeriğiyle zenginleştirir ve görünürlüğünü artırır.\n"+"\n"},comment:{title:"yorumlar\n",details:"Yorum yöneticileri yorumlarınızın gönderilmesini kolaylaştırır ve spam ile mücadele eder."},support:{title:"destek",details:"Destek hizmetleri, site ekibiyle iletişim kurmanıza ve ekibinizi geliştirmenize yardımcı olur.\n"+"\n"},api:{title:"APIs",details:"APIs komut dosyalarının yüklenmesine izin verir: coğrafi konum, arama motorları, çeviriler, ..."},other:{title:"diğer\n",details:"Web içeriğini görüntüleme hizmetleri."},google:{title:"Google hizmetleri için özel onay",details:"Google, verilerinizi izleyici ölçümü, reklam performansı veya size kişiselleştirilmiş reklamlar sunmak için kullanabilir."},mandatoryTitle:"Zorunlu Çerezler",mandatoryText:"Bu site, düzgün çalışması için gerekli olan ve devre dışı bırakılamayan çerezleri kullanır.",save:"Kaydet",ourpartners:"İş ortaklarımız"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.uk.js b/static/tarteaucitron/lang/tarteaucitron.uk.js index 9a3614d..fb319a6 100644 --- a/static/tarteaucitron/lang/tarteaucitron.uk.js +++ b/static/tarteaucitron/lang/tarteaucitron.uk.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Добрий день! Цей сайт нічого від вас не приховує і дає вам можливість обрати, які сторонні послуги увімкнути.", "adblock_call": "Будь ласка вимкніть ваш блокувач реклами, щоб перейти до налаштувань.", "reload": "Перезавантажити сторінку", diff --git a/static/tarteaucitron/lang/tarteaucitron.uk.min.js b/static/tarteaucitron/lang/tarteaucitron.uk.min.js index d1b8ff7..2626070 100644 --- a/static/tarteaucitron/lang/tarteaucitron.uk.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.uk.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Добрий день! Цей сайт нічого від вас не приховує і дає вам можливість обрати, які сторонні послуги увімкнути.",adblock_call:"Будь ласка вимкніть ваш блокувач реклами, щоб перейти до налаштувань.",reload:"Перезавантажити сторінку",alertBigScroll:"Продовжуючи прокрутку,",alertBigClick:"Продовжуючи навігацію,",alertBig:"ви погоджуєтесь на використання сторонніх послуг, які можуть встановлювати кукі",alertBigPrivacy:"Цей сайт використовує кукі і дає вам можливість обрати ті, які ви хочете увімкнути",alertSmall:"Керування послугами",acceptAll:"Прийняти все",personalize:"Налаштувати",close:"Закрити",closeBanner:"Приховати банер cookie",privacyUrl:"Політика конфіденційності",all:"Налаштування всіх послуг",info:"Захист вашого особистого життя",disclaimer:"Дозволяючи ці сторонні послуги, ви даєте згоду на збереження і завантаження кукі, а також на використання засобів відстеження, необхідних для їхньої функціональності.",allow:"Дозволити",deny:"Заборонити",noCookie:"Ця послуга не зберігає жодного кукі.",useCookie:"Ця послуга може зберегти",useCookieCurrent:"Ця послуга зберегла",useNoCookie:"Ця послуга не зберегла жодного кукі.",more:"Дізнатись більше",source:"Перейти на офіційний сайт",credit:"Керування кукі від tarteaucitron.js",noServices:"Цей сайт не використовує жодного кукі, який потребував би вашої згоди.",toggleInfoBox:"Показати/приховати інформацію про збереження кукі",title:"Панель керування кукі",cookieDetail:"Подробиці про кукі",ourSite:"на нашому сайті",modalWindow:"(модальне вікно)",newWindow:"(нове вікно)",allowAll:"Все прийняти",denyAll:"Все відхилити",icon:"Кукі",fallback:"вимкнено.",allowed:"дозволено",disallowed:"заборонено",ads:{title:"Рекламні мережі",details:"Рекламні мережі дають змогу отримувати дохід, монетизуючи рекламні блоки на сайті."},analytic:{title:"Заміри аудиторії",details:"Послуги з замірів аудиторії дозволяють генерувати статистику відвідуваності, корисну для покращення сайту."},social:{title:"Соціальні мережі",details:"Соціальні мережі дозволяють зробити сайт зручнішим і допомагають просувати його через розповсюдження посилань."},video:{title:"Відеоролики",details:"Відеохостинги дають змогу збагатити сайт мультімедійним контентом і сприяють його видимості."},comment:{title:"Коментарі",details:"Менеджери коментарів полегшують додавання ваших коментарів і захищають від спаму."},support:{title:"Підтримка",details:"Послуги підтримки дають вам можливість зв'язатись з адміністрацією сайту і допомогти покращити його."},api:{title:"API",details:"API дозволяють завантажувати скрипти: геолокація, пошукові системи, переклади..."},other:{title:"Інші",details:"Послуги для відображення веб-контенту."},google:{title:"Специфічна згода на послуги Google",details:"Google може використовувати ваші дані для вимірювання аудиторії, рекламної ефективності або для надання вам персоналізованих рекламних оголошень."},mandatoryTitle:"Обов'язкові кукі",mandatoryText:"Цей сайт використовує кукі, які є необхідніми для забезпечення його функціональності. Вимкнути їх неможливо.",save:"Зберегти",ourpartners:"Наші партнери"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Добрий день! Цей сайт нічого від вас не приховує і дає вам можливість обрати, які сторонні послуги увімкнути.",adblock_call:"Будь ласка вимкніть ваш блокувач реклами, щоб перейти до налаштувань.",reload:"Перезавантажити сторінку",alertBigScroll:"Продовжуючи прокрутку,",alertBigClick:"Продовжуючи навігацію,",alertBig:"ви погоджуєтесь на використання сторонніх послуг, які можуть встановлювати кукі",alertBigPrivacy:"Цей сайт використовує кукі і дає вам можливість обрати ті, які ви хочете увімкнути",alertSmall:"Керування послугами",acceptAll:"Прийняти все",personalize:"Налаштувати",close:"Закрити",closeBanner:"Приховати банер cookie",privacyUrl:"Політика конфіденційності",all:"Налаштування всіх послуг",info:"Захист вашого особистого життя",disclaimer:"Дозволяючи ці сторонні послуги, ви даєте згоду на збереження і завантаження кукі, а також на використання засобів відстеження, необхідних для їхньої функціональності.",allow:"Дозволити",deny:"Заборонити",noCookie:"Ця послуга не зберігає жодного кукі.",useCookie:"Ця послуга може зберегти",useCookieCurrent:"Ця послуга зберегла",useNoCookie:"Ця послуга не зберегла жодного кукі.",more:"Дізнатись більше",source:"Перейти на офіційний сайт",credit:"Керування кукі від tarteaucitron.js",noServices:"Цей сайт не використовує жодного кукі, який потребував би вашої згоди.",toggleInfoBox:"Показати/приховати інформацію про збереження кукі",title:"Панель керування кукі",cookieDetail:"Подробиці про кукі",ourSite:"на нашому сайті",modalWindow:"(модальне вікно)",newWindow:"(нове вікно)",allowAll:"Все прийняти",denyAll:"Все відхилити",icon:"Кукі",fallback:"вимкнено.",allowed:"дозволено",disallowed:"заборонено",ads:{title:"Рекламні мережі",details:"Рекламні мережі дають змогу отримувати дохід, монетизуючи рекламні блоки на сайті."},analytic:{title:"Заміри аудиторії",details:"Послуги з замірів аудиторії дозволяють генерувати статистику відвідуваності, корисну для покращення сайту."},social:{title:"Соціальні мережі",details:"Соціальні мережі дозволяють зробити сайт зручнішим і допомагають просувати його через розповсюдження посилань."},video:{title:"Відеоролики",details:"Відеохостинги дають змогу збагатити сайт мультімедійним контентом і сприяють його видимості."},comment:{title:"Коментарі",details:"Менеджери коментарів полегшують додавання ваших коментарів і захищають від спаму."},support:{title:"Підтримка",details:"Послуги підтримки дають вам можливість зв'язатись з адміністрацією сайту і допомогти покращити його."},api:{title:"API",details:"API дозволяють завантажувати скрипти: геолокація, пошукові системи, переклади..."},other:{title:"Інші",details:"Послуги для відображення веб-контенту."},google:{title:"Специфічна згода на послуги Google",details:"Google може використовувати ваші дані для вимірювання аудиторії, рекламної ефективності або для надання вам персоналізованих рекламних оголошень."},mandatoryTitle:"Обов'язкові кукі",mandatoryText:"Цей сайт використовує кукі, які є необхідніми для забезпечення його функціональності. Вимкнути їх неможливо.",save:"Зберегти",ourpartners:"Наші партнери"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.vi.js b/static/tarteaucitron/lang/tarteaucitron.vi.js index 6285870..a2bdef2 100644 --- a/static/tarteaucitron/lang/tarteaucitron.vi.js +++ b/static/tarteaucitron/lang/tarteaucitron.vi.js @@ -1,7 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { - "middleBarHead": "☝ 🍪", + "middleBarHead": "☝️ 🍪", "adblock": "Xin chào! Trang web này minh bạch và cho phép bạn chọn dịch vụ bên thứ 3 mà bạn muốn cho phép.", "adblock_call": "Vui lòng vô hiệu hóa trình chặn quảng cáo của bạn để bắt đầu tùy chỉnh.", "reload": "Làm mới trang", diff --git a/static/tarteaucitron/lang/tarteaucitron.vi.min.js b/static/tarteaucitron/lang/tarteaucitron.vi.min.js index 44c5afe..2780a12 100644 --- a/static/tarteaucitron/lang/tarteaucitron.vi.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.vi.min.js @@ -1 +1 @@ -tarteaucitron.lang={middleBarHead:"☝ 🍪",adblock:"Xin chào! Trang web này minh bạch và cho phép bạn chọn dịch vụ bên thứ 3 mà bạn muốn cho phép.",adblock_call:"Vui lòng vô hiệu hóa trình chặn quảng cáo của bạn để bắt đầu tùy chỉnh.",reload:"Làm mới trang",alertBigScroll:"tiếp tục cuộn,",alertBigClick:"Nếu bạn tiếp tục truy cập trang web này,",alertBig:"bạn đang cho phép tất cả các dịch vụ của bên thứ ba",alertBigPrivacy:"Trang web này sử dụng cookie và cung cấp cho bạn quyền kiểm soát những gì bạn muốn kích hoạt",alertSmall:"Quản lý dịch vụ",acceptAll:"OK, đồng ý",personalize:"Cá nhân",close:"Đóng",closeBanner:"Ẩn biểu ngữ cookie",privacyUrl:"Chính sách bảo mật",all:"Ưu tiên cho tất cả các dịch vụ",info:"Bảo vệ sự riêng tư của bạn",disclaimer:"Bằng cách cho phép các dịch vụ bên thứ ba này, bạn chấp nhận cookie của họ và sử dụng các công nghệ theo dõi cần thiết cho hoạt động đúng đắn của họ.",allow:"Cho phép",deny:"Từ chối",noCookie:"Dịch vụ này không sử dụng cookie.",useCookie:"Dịch vụ này có thể cài đặt",useCookieCurrent:"Dịch vụ này đã được cài đặt",useNoCookie:"Dịch vụ này không được cài đặt bất cứ cookie nào.",more:"Xem thêm",source:"Xam trang web chính thức",credit:"Cookies được quản lý bằng tarteaucitron.js",noServices:"Trang web này không sử dụng bất kì cookie nào yêu cầu sự chấp thuận của bạn.",toggleInfoBox:"Hiển thị / ẩn thông tin về lưu trữ cookie",title:"Bảng quản lý cookie",cookieDetail:"Cookie chi tiết",ourSite:"trên site của chúng ta",modalWindow:"(cửa sổ phương thức)",newWindow:"(Cửa sổ mới)",allowAll:"Cho phép tất cả các Cookies",denyAll:"Từ chối cất cả cookies",icon:"Cookies",fallback:"tắt.",allowed:"được phép",disallowed:"không được phép",ads:{title:"Mạng quảng cáo",details:"Mạng quảng cáo có thể tạo doanh thu bằng cách bán không gian quảng cáo trên trang web."},analytic:{title:"Đo lường hành vi người dùng",details:"Công cụ đo lường hành vi người dùng cập nhật những thống kê hữu ích nhằm nâng cao chất lượng phục vụ của website."},social:{title:"Các mạng xã hội",details:"Mạng xã hội có thể cải thiện khả năng sử dụng của trang web và giúp quảng bá nó thông qua các chia sẻ."},video:{title:"Các video",details:"Dịch vụ chia sẻ video giúp thêm phương tiện phong phú trên trang web và tăng khả năng hiển thị của nó."},comment:{title:"Bình luận",details:"Quản lý comments tạo điều kiện cho việc gửi ý kiến và chống thư rác."},support:{title:"Hỗ trợ",details:"Các dịch vụ hỗ trợ cho phép bạn liên lạc với nhóm trang web và giúp cải thiện nó."},api:{title:"APIs",details:"APIs được sử dụng để load: geolocation, search engines, translations, ..."},other:{title:"Dịch vụ khác",details:"Dịch vụ hiển thị nội dung web."},google:{title:"Sự đồng ý cụ thể cho dịch vụ của Google",details:"Google có thể sử dụng dữ liệu của bạn để đo lường đối tượng, hiệu suất quảng cáo hoặc cung cấp quảng cáo được cá nhân hóa cho bạn."},mandatoryTitle:"Cookie Bắt Buộc",mandatoryText:"Trang web này sử dụng cookie cần thiết để hoạt động đúng cách, không thể tắt.",save:"Lưu",ourpartners:"Đối tác của chúng tôi"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"Xin chào! Trang web này minh bạch và cho phép bạn chọn dịch vụ bên thứ 3 mà bạn muốn cho phép.",adblock_call:"Vui lòng vô hiệu hóa trình chặn quảng cáo của bạn để bắt đầu tùy chỉnh.",reload:"Làm mới trang",alertBigScroll:"tiếp tục cuộn,",alertBigClick:"Nếu bạn tiếp tục truy cập trang web này,",alertBig:"bạn đang cho phép tất cả các dịch vụ của bên thứ ba",alertBigPrivacy:"Trang web này sử dụng cookie và cung cấp cho bạn quyền kiểm soát những gì bạn muốn kích hoạt",alertSmall:"Quản lý dịch vụ",acceptAll:"OK, đồng ý",personalize:"Cá nhân",close:"Đóng",closeBanner:"Ẩn biểu ngữ cookie",privacyUrl:"Chính sách bảo mật",all:"Ưu tiên cho tất cả các dịch vụ",info:"Bảo vệ sự riêng tư của bạn",disclaimer:"Bằng cách cho phép các dịch vụ bên thứ ba này, bạn chấp nhận cookie của họ và sử dụng các công nghệ theo dõi cần thiết cho hoạt động đúng đắn của họ.",allow:"Cho phép",deny:"Từ chối",noCookie:"Dịch vụ này không sử dụng cookie.",useCookie:"Dịch vụ này có thể cài đặt",useCookieCurrent:"Dịch vụ này đã được cài đặt",useNoCookie:"Dịch vụ này không được cài đặt bất cứ cookie nào.",more:"Xem thêm",source:"Xam trang web chính thức",credit:"Cookies được quản lý bằng tarteaucitron.js",noServices:"Trang web này không sử dụng bất kì cookie nào yêu cầu sự chấp thuận của bạn.",toggleInfoBox:"Hiển thị / ẩn thông tin về lưu trữ cookie",title:"Bảng quản lý cookie",cookieDetail:"Cookie chi tiết",ourSite:"trên site của chúng ta",modalWindow:"(cửa sổ phương thức)",newWindow:"(Cửa sổ mới)",allowAll:"Cho phép tất cả các Cookies",denyAll:"Từ chối cất cả cookies",icon:"Cookies",fallback:"tắt.",allowed:"được phép",disallowed:"không được phép",ads:{title:"Mạng quảng cáo",details:"Mạng quảng cáo có thể tạo doanh thu bằng cách bán không gian quảng cáo trên trang web."},analytic:{title:"Đo lường hành vi người dùng",details:"Công cụ đo lường hành vi người dùng cập nhật những thống kê hữu ích nhằm nâng cao chất lượng phục vụ của website."},social:{title:"Các mạng xã hội",details:"Mạng xã hội có thể cải thiện khả năng sử dụng của trang web và giúp quảng bá nó thông qua các chia sẻ."},video:{title:"Các video",details:"Dịch vụ chia sẻ video giúp thêm phương tiện phong phú trên trang web và tăng khả năng hiển thị của nó."},comment:{title:"Bình luận",details:"Quản lý comments tạo điều kiện cho việc gửi ý kiến và chống thư rác."},support:{title:"Hỗ trợ",details:"Các dịch vụ hỗ trợ cho phép bạn liên lạc với nhóm trang web và giúp cải thiện nó."},api:{title:"APIs",details:"APIs được sử dụng để load: geolocation, search engines, translations, ..."},other:{title:"Dịch vụ khác",details:"Dịch vụ hiển thị nội dung web."},google:{title:"Sự đồng ý cụ thể cho dịch vụ của Google",details:"Google có thể sử dụng dữ liệu của bạn để đo lường đối tượng, hiệu suất quảng cáo hoặc cung cấp quảng cáo được cá nhân hóa cho bạn."},mandatoryTitle:"Cookie Bắt Buộc",mandatoryText:"Trang web này sử dụng cookie cần thiết để hoạt động đúng cách, không thể tắt.",save:"Lưu",ourpartners:"Đối tác của chúng tôi"}; \ No newline at end of file diff --git a/static/tarteaucitron/lang/tarteaucitron.zh.js b/static/tarteaucitron/lang/tarteaucitron.zh.js index 706a358..0e5765d 100644 --- a/static/tarteaucitron/lang/tarteaucitron.zh.js +++ b/static/tarteaucitron/lang/tarteaucitron.zh.js @@ -1,6 +1,7 @@ /*global tarteaucitron */ /* min ready */ tarteaucitron.lang = { + "middleBarHead": "☝️ 🍪", "adblock": "您好!这是一个透明的网站,您可以选择激活不同的第三方服务。", "adblock_call": "感谢您停用广告拦截功能并开始个性化设置。", "reload": "重新加载页面", diff --git a/static/tarteaucitron/lang/tarteaucitron.zh.min.js b/static/tarteaucitron/lang/tarteaucitron.zh.min.js index 5aa81bf..d1539e0 100644 --- a/static/tarteaucitron/lang/tarteaucitron.zh.min.js +++ b/static/tarteaucitron/lang/tarteaucitron.zh.min.js @@ -1 +1 @@ -tarteaucitron.lang={adblock:"您好!这是一个透明的网站,您可以选择激活不同的第三方服务。",adblock_call:"感谢您停用广告拦截功能并开始个性化设置。",reload:"重新加载页面",alertBigScroll:"继续划屏,",alertBigClick:"继续浏览,",alertBig:"即表示您同意第三方服务安装cookie",alertBigPrivacy:"这个网站使用cookie, 并让您可以控制想要激活的内容。",alertSmall:"服务管理",acceptAll:"好的,全部接受",personalize:"个性化",close:"关闭",closeBanner:"隐藏 cookie 横幅",privacyUrl:"保密政策",all:"所有服务的偏好设置",disclaimer:"通过授权这些第三方服务,您同意存储和读取cookie,并使用其正常运行所需的跟踪技术。",allow:"允许",deny:"禁用",noCookie:"此服务不存储任何cookie。",useCookie:"此服务可以存储",useCookieCurrent:"此服务已存储",useNoCookie:"此服务未存储任何cookie。",more:"了解更多",source:"查看官网",credit:"通过tarteaucitron.js管理cookie",noServices:"本网站不使用任何需要您同意的cookie。",toggleInfoBox:"显示/隐藏cookie存储信息。",title:"Cookie管理面板",cookieDetail:"Cookie详情",ourSite:"显示在我们的网站上",modalWindow:"(模态窗口)",newWindow:"(新建窗口)",allowAll:"允许",denyAll:"禁用",icon:"Cookies",fallback:"已禁用。",allowed:"允许的",disallowed:"不允许的",ads:{title:"广告组",details:"广告组通过营销网站上的广告空间来产生收入."},analytic:{title:"受众测量",details:"受众测量服务可以生成对站点改进有用的访问统计数据。"},social:{title:"社交网络",details:"社交网络有助于提高网站的用户友好性,并通过分享帮助推广。"},video:{title:"视频",details:"视频共享服务丰富网站的多媒体内容,提高网站知名度。"},comment:{title:"评论",details:"评论管理器使您的评论更容易提交,并避免垃圾邮件。"},support:{title:"支持",details:"支持服务使您能够与网站团队联系并帮助改进网站."},api:{title:"API",details:"API允许加载脚本:地理位置、搜索引擎、翻译……"},other:{title:"其他",details:"旨在显示网页内容的服务。"},google:{title:"Google 服务的特定同意",details:"Google 可能使用您的数据进行受众测量、广告效果评估,或向您提供个性化广告。"},mandatoryTitle:"强制性Cookie",mandatoryText:"本站使用必要的Cookie以确保其正常运行,这些Cookie无法停用。",save:"保存",ourpartners:"我们的合作伙伴"}; \ No newline at end of file +tarteaucitron.lang={middleBarHead:"☝️ 🍪",adblock:"您好!这是一个透明的网站,您可以选择激活不同的第三方服务。",adblock_call:"感谢您停用广告拦截功能并开始个性化设置。",reload:"重新加载页面",alertBigScroll:"继续划屏,",alertBigClick:"继续浏览,",alertBig:"即表示您同意第三方服务安装cookie",alertBigPrivacy:"这个网站使用cookie, 并让您可以控制想要激活的内容。",alertSmall:"服务管理",acceptAll:"好的,全部接受",personalize:"个性化",close:"关闭",closeBanner:"隐藏 cookie 横幅",privacyUrl:"保密政策",all:"所有服务的偏好设置",disclaimer:"通过授权这些第三方服务,您同意存储和读取cookie,并使用其正常运行所需的跟踪技术。",allow:"允许",deny:"禁用",noCookie:"此服务不存储任何cookie。",useCookie:"此服务可以存储",useCookieCurrent:"此服务已存储",useNoCookie:"此服务未存储任何cookie。",more:"了解更多",source:"查看官网",credit:"通过tarteaucitron.js管理cookie",noServices:"本网站不使用任何需要您同意的cookie。",toggleInfoBox:"显示/隐藏cookie存储信息。",title:"Cookie管理面板",cookieDetail:"Cookie详情",ourSite:"显示在我们的网站上",modalWindow:"(模态窗口)",newWindow:"(新建窗口)",allowAll:"允许",denyAll:"禁用",icon:"Cookies",fallback:"已禁用。",allowed:"允许的",disallowed:"不允许的",ads:{title:"广告组",details:"广告组通过营销网站上的广告空间来产生收入."},analytic:{title:"受众测量",details:"受众测量服务可以生成对站点改进有用的访问统计数据。"},social:{title:"社交网络",details:"社交网络有助于提高网站的用户友好性,并通过分享帮助推广。"},video:{title:"视频",details:"视频共享服务丰富网站的多媒体内容,提高网站知名度。"},comment:{title:"评论",details:"评论管理器使您的评论更容易提交,并避免垃圾邮件。"},support:{title:"支持",details:"支持服务使您能够与网站团队联系并帮助改进网站."},api:{title:"API",details:"API允许加载脚本:地理位置、搜索引擎、翻译……"},other:{title:"其他",details:"旨在显示网页内容的服务。"},google:{title:"Google 服务的特定同意",details:"Google 可能使用您的数据进行受众测量、广告效果评估,或向您提供个性化广告。"},mandatoryTitle:"强制性Cookie",mandatoryText:"本站使用必要的Cookie以确保其正常运行,这些Cookie无法停用。",save:"保存",ourpartners:"我们的合作伙伴"}; \ No newline at end of file diff --git a/static/tarteaucitron/package.json b/static/tarteaucitron/package.json index 959fdc4..5b7f1c3 100644 --- a/static/tarteaucitron/package.json +++ b/static/tarteaucitron/package.json @@ -1,6 +1,6 @@ { "name": "tarteaucitronjs", - "version": "1.21.0", + "version": "1.24.0", "main": "tarteaucitron.js", "description": "tarteaucitron.io - Get a compliant and accessible cookie banner", "dependencies": {}, diff --git a/static/tarteaucitron/tarteaucitron.js b/static/tarteaucitron/tarteaucitron.js index 85eb4f1..72a2215 100644 --- a/static/tarteaucitron/tarteaucitron.js +++ b/static/tarteaucitron/tarteaucitron.js @@ -1,8 +1,11 @@ /*jslint browser: true, evil: true */ /* min ready */ -var scripts = document.getElementsByTagName('script'), - tarteaucitronPath = (document.currentScript || scripts[scripts.length - 1]).src.split('?')[0], +var tarteaucitronScriptsDiscover = document.getElementsByTagName('script'), + tarteaucitronCurrentScript = document.currentScript instanceof HTMLScriptElement + ? document.currentScript + : tarteaucitronScriptsDiscover[tarteaucitronScriptsDiscover.length - 1], + tarteaucitronPath = tarteaucitronCurrentScript.src.split('?')[0], tarteaucitronForceCDN = (tarteaucitronForceCDN === undefined) ? '' : tarteaucitronForceCDN, tarteaucitronUseMin = (tarteaucitronUseMin === undefined) ? '' : tarteaucitronUseMin, cdn = (tarteaucitronForceCDN === '') ? tarteaucitronPath.split('/').slice(0, -1).join('/') + '/' : tarteaucitronForceCDN, @@ -19,7 +22,7 @@ var scripts = document.getElementsByTagName('script'), var tarteaucitron = { - "version": "1.21.0", + "version": "1.24.0", "cdn": cdn, "user": {}, "lang": {}, @@ -43,9 +46,13 @@ var tarteaucitron = { if (alreadyLaunch === 0) { alreadyLaunch = 1; if (window.addEventListener) { - window.addEventListener("load", function () { + if( document.readyState === "complete" ) { tarteaucitron.initEvents.loadEvent(false); - }, false); + } else { + window.addEventListener("load", function () { + tarteaucitron.initEvents.loadEvent(false); + }, false); + } window.addEventListener("scroll", function () { tarteaucitron.initEvents.scrollEvent(); }, false); @@ -60,9 +67,13 @@ var tarteaucitron = { tarteaucitron.initEvents.resizeEvent(); }, false); } else { - window.attachEvent("onload", function () { + if( document.readyState === "complete" ) { tarteaucitron.initEvents.loadEvent(true); - }); + } else { + window.attachEvent("onload", function () { + tarteaucitron.initEvents.loadEvent(true); + }); + } window.attachEvent("onscroll", function () { tarteaucitron.initEvents.scrollEvent(); }); @@ -204,8 +215,8 @@ var tarteaucitron = { var cdn = tarteaucitron.cdn, language = tarteaucitron.getLanguage(), useMinifiedJS = ((new URL(cdn,tarteaucitronPath).host == 'cdn.jsdelivr.net') || (tarteaucitronPath.indexOf('.min.') >= 0) || (tarteaucitronUseMin !== '')), - pathToLang = cdn + 'lang/tarteaucitron.' + language + (useMinifiedJS ? '.min' : '') + '.js', - pathToServices = cdn + 'tarteaucitron.services' + (useMinifiedJS ? '.min' : '') + '.js', + pathToLang = cdn + 'lang/tarteaucitron.' + language + (useMinifiedJS ? '.min' : '') + '.js?v=' + tarteaucitron.version, + pathToServices = cdn + 'tarteaucitron.services' + (useMinifiedJS ? '.min' : '') + '.js?v=' + tarteaucitron.version, linkElement = document.createElement('link'), defaults = { "adblocker": false, @@ -220,6 +231,7 @@ var tarteaucitron = { "showIcon": true, "iconPosition": "BottomRight", "cookieslist": false, + "cookieslistEmbed": false, "handleBrowserDNTRequest": false, "DenyAllCta": true, "AcceptAllCta" : true, @@ -277,6 +289,7 @@ var tarteaucitron = { window.addEventListener('tac.root_available', function() { setTimeout(function() { window.dataLayer = window.dataLayer || []; + tarteaucitron.job.filter(job => tarteaucitron.state[job] === true).length > 0 && window.dataLayer.push({ event: 'tac_consent_update', tacAuthorizedVendors: tarteaucitron.job.filter(job => tarteaucitron.state[job] === true) @@ -285,6 +298,7 @@ var tarteaucitron = { }); document.addEventListener('tac.consent_updated', function () { window.dataLayer = window.dataLayer || []; + tarteaucitron.job.filter(job => tarteaucitron.state[job] === true).length > 0 && window.dataLayer.push({ event: 'tac_consent_update', tacAuthorizedVendors: tarteaucitron.job.filter(job => tarteaucitron.state[job] === true) @@ -297,24 +311,18 @@ var tarteaucitron = { window.uetq = window.uetq || []; window.uetq.push('consent', 'default', {'ad_storage': 'denied'}); - document.addEventListener('clarity_loaded', function () { + document.addEventListener('clarity_consentModeOk', function () { window.uetq.push('consent', 'update', {'ad_storage': 'granted'}); - }); - document.addEventListener('clarity_allowed', function () { - window.uetq.push('consent', 'update', {'ad_storage': 'granted'}); - }); - document.addEventListener('clarity_disallowed', function () { + }, { once: true }); + document.addEventListener('clarity_consentModeKo', function () { window.uetq.push('consent', 'update', {'ad_storage': 'denied'}); - }); - document.addEventListener('bingads_loaded', function () { + }, { once: true }); + document.addEventListener('bingads_consentModeOk', function () { window.uetq.push('consent', 'update', {'ad_storage': 'granted'}); - }); - document.addEventListener('bingads_allowed', function () { - window.uetq.push('consent', 'update', {'ad_storage': 'granted'}); - }); - document.addEventListener('bingads_disallowed', function () { + }, { once: true }); + document.addEventListener('bingads_consentModeKo', function () { window.uetq.push('consent', 'update', {'ad_storage': 'denied'}); - }); + }, { once: true }); if (tarteaucitron.parameters.softConsentMode === false) { window.addEventListener('tac.root_available', function () { @@ -387,84 +395,63 @@ var tarteaucitron = { }); // personalized ads loaded/allowed, set gcm to granted - document.addEventListener('gcmads_loaded', function() { + document.addEventListener('gcmads_consentModeOk', function() { window.tac_gtag('consent', 'update', { ad_user_data: 'granted', ad_personalization: 'granted' }); - }); - document.addEventListener('gcmads_allowed', function() { - window.tac_gtag('consent', 'update', { - ad_user_data: 'granted', - ad_personalization: 'granted' - }); - }); + }, { once: true }); // personalized ads disallowed, set gcm to denied - document.addEventListener('gcmads_disallowed', function() { + document.addEventListener('gcmads_consentModeKo', function() { window.tac_gtag('consent', 'update', { ad_user_data: 'denied', ad_personalization: 'denied' }); - }); + }, { once: true }); // google ads loaded/allowed, set gcm to granted - document.addEventListener('googleads_loaded', function() { + document.addEventListener('googleads_consentModeOk', function() { window.tac_gtag('consent', 'update', { ad_storage: 'granted' }); - }); - document.addEventListener('googleads_allowed', function() { - window.tac_gtag('consent', 'update', { - ad_storage: 'granted' - }); - }); + }, { once: true }); // google ads disallowed, disable personalized ads and update gcm - document.addEventListener('googleads_disallowed', function() { + document.addEventListener('googleads_consentModeKo', function() { tarteaucitron.setConsent('gcmads', false); window.tac_gtag('consent', 'update', { ad_storage: 'denied' }); - }); + }, { once: true }); // ga4 loaded/allowed, set gcm to granted - document.addEventListener('gtag_loaded', function() { + document.addEventListener('gtag_consentModeOk', function() { window.tac_gtag('consent', 'update', { analytics_storage: 'granted' }); - }); - document.addEventListener('gtag_allowed', function() { - window.tac_gtag('consent', 'update', { - analytics_storage: 'granted' - }); - }); + }, { once: true }); // ga4 disallowed, update gcm - document.addEventListener('gtag_disallowed', function() { + document.addEventListener('gtag_consentModeKo', function() { window.tac_gtag('consent', 'update', { analytics_storage: 'denied' }); - }); + }, { once: true }); // multiple ga4 loaded/allowed, set gcm to granted - document.addEventListener('multiplegtag_loaded', function() { + document.addEventListener('multiplegtag_consentModeOk', function() { window.tac_gtag('consent', 'update', { analytics_storage: 'granted' }); - }); - document.addEventListener('multiplegtag_allowed', function() { - window.tac_gtag('consent', 'update', { - analytics_storage: 'granted' - }); - }); + }, { once: true }); // multiple ga4 disallowed, update gcm - document.addEventListener('multiplegtag_disallowed', function() { + document.addEventListener('multiplegtag_consentModeKo', function() { window.tac_gtag('consent', 'update', { analytics_storage: 'denied' }); - }); + }, { once: true }); // allow gtag/googleads by default if consent mode is on if (tarteaucitron.parameters.softConsentMode === false) { @@ -484,50 +471,28 @@ var tarteaucitron = { if ( !tarteaucitron.parameters.useExternalCss ) { linkElement.rel = 'stylesheet'; linkElement.type = 'text/css'; - linkElement.href = cdn + 'css/tarteaucitron' + (useMinifiedJS ? '.min' : '') + '.css'; + linkElement.href = cdn + 'css/tarteaucitron' + (useMinifiedJS ? '.min' : '') + '.css?v=' + tarteaucitron.version; document.getElementsByTagName('head')[0].appendChild(linkElement); } // Step 2: load language and services tarteaucitron.addInternalScript(pathToLang, '', function () { - if(tarteaucitronCustomText !== ''){ - tarteaucitron.lang = tarteaucitron.AddOrUpdate(tarteaucitron.lang, tarteaucitronCustomText); - } + if(tarteaucitronCustomText !== ''){ + tarteaucitron.lang = tarteaucitron.AddOrUpdate(tarteaucitron.lang, tarteaucitronCustomText); + } + + document.documentElement.style.setProperty( + "--tacTitleBanner", + JSON.stringify(tarteaucitron.lang.middleBarHead) + ); + tarteaucitron.addInternalScript(pathToServices, '', function () { - // css for the middle bar TODO: add it on the css file - if (tarteaucitron.orientation === 'middle') { - var customThemeMiddle = document.createElement('style'), - cssRuleMiddle = 'div#tarteaucitronRoot.tarteaucitronBeforeVisible:before {content: \'\';position: fixed;width: 100%;height: 100%;background: white;top: 0;left: 0;z-index: 999;opacity: 0.5;}div#tarteaucitronAlertBig:before {content: \'' + tarteaucitron.lang.middleBarHead + '\';font-size: 35px;}body #tarteaucitronRoot div#tarteaucitronAlertBig {width: 60%;min-width: 285px;height: auto;margin: auto;left: 50%;top: 50%;transform: translate(-50%, -50%);box-shadow: 0 0 9000px #000;border-radius: 20px;padding: 35px 25px;}span#tarteaucitronDisclaimerAlert {padding: 0 30px;}#tarteaucitronRoot span#tarteaucitronDisclaimerAlert {margin: 10px 0 30px;display: block;text-align: center;font-size: 21px;}@media screen and (max-width: 900px) {div#tarteaucitronAlertBig button {margin: 0 auto 10px!important;display: block!important;}}'; - - customThemeMiddle.type = 'text/css'; - if (customThemeMiddle.styleSheet) { - customThemeMiddle.styleSheet.cssText = cssRuleMiddle; - } else { - customThemeMiddle.appendChild(document.createTextNode(cssRuleMiddle)); - } - document.getElementsByTagName('head')[0].appendChild(customThemeMiddle); - } - // disable the expand option if services grouped by category if (tarteaucitron.parameters.groupServices == true) { tarteaucitron.parameters.showDetailsOnClick = true; } - - // css for the popup bar TODO: add it on the css file - if (tarteaucitron.orientation === 'popup') { - var customThemePopup = document.createElement('style'), - cssRulePopup = 'div#tarteaucitronAlertBig:before {content: \'' + tarteaucitron.lang.middleBarHead + '\';font-size: 22px;}body #tarteaucitronRoot div#tarteaucitronAlertBig {bottom: 0;top: auto!important;left: 8px!important;right: auto!important;transform: initial!important;border-radius: 5px 5px 0 0!important;max-width: 250px!important;width: calc(100% - 16px)!important;min-width: 0!important;padding: 25px 0;}span#tarteaucitronDisclaimerAlert {padding: 0 30px;font-size: 15px!important;}#tarteaucitronRoot span#tarteaucitronDisclaimerAlert {margin: 10px 0 30px;display: block;text-align: center;font-size: 21px;}div#tarteaucitronAlertBig button:not(#tarteaucitronCloseCross) {margin: 0 auto 10px!important;display: block!important;width: calc(100% - 60px);box-sizing: border-box;}'; - - customThemePopup.type = 'text/css'; - if (customThemePopup.styleSheet) { - customThemePopup.styleSheet.cssText = cssRulePopup; - } else { - customThemePopup.appendChild(document.createTextNode(cssRulePopup)); - } - document.getElementsByTagName('head')[0].appendChild(customThemePopup); - } - + var body = document.body, div = document.createElement('div'), html = '', @@ -543,6 +508,10 @@ var tarteaucitron = { return 0; }); + if(!/^<\s*(p|ul)(\s|>)/i.test(tarteaucitron.lang.disclaimer)) { + tarteaucitron.lang.disclaimer = '

'+tarteaucitron.lang.disclaimer+'

' + } + // Step 3: prepare the html html += '
' + tarteaucitron.lang.title + '
'; html += '
'; @@ -616,6 +585,32 @@ var tarteaucitron = { html += ''; } + if (tarteaucitron.parameters.cookieslist === false && tarteaucitron.parameters.cookieslistEmbed === true) { + setTimeout(function() { + tarteaucitron.addClickEventToId("tarteaucitron-toggle-group-cookies", function () { + tarteaucitron.userInterface.toggle('tarteaucitronServices_cookies'); + if (document.getElementById('tarteaucitronServices_cookies').style.display == 'block') { + tarteaucitron.userInterface.addClass('tarteaucitronServicesTitle_cookies', 'tarteaucitronIsExpanded'); + document.getElementById('tarteaucitron-toggle-group-cookies').setAttribute('aria-expanded', 'true'); + } else { + tarteaucitron.userInterface.removeClass('tarteaucitronServicesTitle_cookies', 'tarteaucitronIsExpanded'); + document.getElementById('tarteaucitron-toggle-group-cookies').setAttribute('aria-expanded', 'false'); + } + }); + }, 800); + + html += '
  • '; + html += '
      ' + + '
    • ' + + '
      ' + + ' 0 cookie' + + ' ' + + '
      ' + + '
    • ' + + '
    '; + html += '
  • '; + } + for (i = 0; i < cat.length; i += 1) { html += '
  • '; html += '
    '; @@ -626,7 +621,7 @@ var tarteaucitron = { html += ' ' + tarteaucitron.lang[cat[i]].title + ''; } html += '
    '; - html += '
    '; + html += '
    '; html += ' ' + tarteaucitron.lang[cat[i]].details; html += '
    '; html += '
    • '; @@ -779,6 +774,8 @@ var tarteaucitron = { body.appendChild(div, body); } + tarteaucitron.userInterface.addClass("tarteaucitronRoot", "tarteaucitronSize-" + tarteaucitron.parameters.orientation); + div.setAttribute('data-nosnippet', 'true'); div.setAttribute('lang', language); div.setAttribute('role', 'region'); @@ -1062,6 +1059,7 @@ var tarteaucitron = { if(tarteaucitron.events.load) { tarteaucitron.events.load(); } + }, 500); }); @@ -1114,7 +1112,12 @@ var tarteaucitron = { html += '
      '; if (tarteaucitron.parameters.moreInfoLink == true) { - var link = 'https://tarteaucitron.io/service/' + service.key + '/'; + var link; + if (tarteaucitron.getLanguage() === 'fr') { + link = 'https://tarteaucitron.io/service/' + service.key + '/'; + } else { + link = 'https://tarteaucitron.io/en/service-details/' + service.key + '/'; + } if (service.readmoreLink !== undefined && service.readmoreLink !== '') { link = service.readmoreLink; } @@ -1170,6 +1173,7 @@ var tarteaucitron = { } if (tarteaucitron.launch[service.key] !== true) { tarteaucitron.launch[service.key] = true; + tarteaucitron.sendEvent(service.key + '_consentModeOk'); if ((typeof tarteaucitronMagic === 'undefined' || tarteaucitronMagic.indexOf("_" + service.key + "_") < 0) && tarteaucitron.parameters.serverSide !== true) { service.js(); } tarteaucitron.sendEvent(service.key + '_loaded'); } @@ -1190,6 +1194,11 @@ var tarteaucitron = { tarteaucitron.userInterface.color(service.key, false); } else if (!isResponded) { tarteaucitron.cookie.create(service.key, state); + + if (true === state) { + tarteaucitron.sendEvent(service.key + '_consentModeOk'); + } + if ((typeof tarteaucitronMagic === 'undefined' || tarteaucitronMagic.indexOf("_" + service.key + "_") < 0) && tarteaucitron.parameters.serverSide !== true) { if(true === state && typeof service.js === 'function') { service.js(); @@ -1321,6 +1330,13 @@ var tarteaucitron = { service = s[tarteaucitron.job[index]]; key = service.key; if (tarteaucitron.state[key] !== status) { + + if (status == true) { + tarteaucitron.sendEvent(key + '_consentModeOk'); + } else { + tarteaucitron.sendEvent(key + '_consentModeKo'); + } + if (status === false && tarteaucitron.launch[key] === true) { tarteaucitron.reloadThePage = true; if (tarteaucitron.checkIfExist('tarteaucitronClosePanel')) { @@ -1330,7 +1346,6 @@ var tarteaucitron = { } } if (tarteaucitron.launch[key] !== true && status === true) { - tarteaucitron.pro('!' + key + '=engage'); tarteaucitron.launch[key] = true; @@ -1365,6 +1380,12 @@ var tarteaucitron = { return; } + if (status == true) { + tarteaucitron.sendEvent(key + '_consentModeOk'); + } else { + tarteaucitron.sendEvent(key + '_consentModeKo'); + } + if (status === false && tarteaucitron.launch[key] === true) { tarteaucitron.reloadThePage = true; if (tarteaucitron.checkIfExist('tarteaucitronClosePanel')) { @@ -1377,10 +1398,10 @@ var tarteaucitron = { // if not already launched... launch the service if (status === true) { if (tarteaucitron.launch[key] !== true) { - tarteaucitron.pro('!' + key + '=engage'); tarteaucitron.launch[key] = true; + tarteaucitron.sendEvent(key + '_consentModeOk'); if ((typeof tarteaucitronMagic === 'undefined' || tarteaucitronMagic.indexOf("_" + key + "_") < 0) && tarteaucitron.parameters.serverSide !== true) { tarteaucitron.services[key].js(); } tarteaucitron.sendEvent(key + '_loaded'); } @@ -1409,6 +1430,8 @@ var tarteaucitron = { if (key !== "") { + tarteaucitron.cookie.checkCount(key); + if (status === true) { tarteaucitron.userInterface.addClass(key + 'Line', 'tarteaucitronIsAllowed'); tarteaucitron.userInterface.removeClass(key + 'Line', 'tarteaucitronIsDenied'); @@ -1443,9 +1466,23 @@ var tarteaucitron = { } sum -= sumToRemove; - tarteaucitron.userInterface.css(c + 'DotGreen', 'width', ((100 / sum) * nbAllowed) + '%'); - tarteaucitron.userInterface.css(c + 'DotYellow', 'width', ((100 / sum) * nbPending) + '%'); - tarteaucitron.userInterface.css(c + 'DotRed', 'width', ((100 / sum) * nbDenied) + '%'); + const percentages = { + DotGreen: (100 / sum) * nbAllowed, + DotYellow: (100 / sum) * nbPending, + DotRed: (100 / sum) * nbDenied + }; + + for (const [colorKey, value] of Object.entries(percentages)) { + tarteaucitron.userInterface.css(c + colorKey, 'width', value + '%'); + } + + if (tarteaucitron.parameters.showAlertSmall === true) { + const percentAllowed = percentages.DotGreen; + const label = tarteaucitron.lang.alertSmall + " - " + percentAllowed + "% " + tarteaucitron.lang.allowed + " " + tarteaucitron.lang.modalWindow; + const managerEl = document.getElementById(c + 'Manager'); + managerEl.setAttribute('aria-label', label); + managerEl.setAttribute('title', label); + } if (nbDenied === 0 && nbPending === 0) { tarteaucitron.userInterface.removeClass(c + 'AllDenied', c + 'IsSelected'); @@ -1500,7 +1537,7 @@ var tarteaucitron = { } - // groups + // groups var cats = document.querySelectorAll('[id^="tarteaucitronServicesTitle_"]') Array.prototype.forEach.call(cats, function(item) { var cat = item.getAttribute('id').replace(/^(tarteaucitronServicesTitle_)/, ""), @@ -1704,6 +1741,7 @@ var tarteaucitron = { tarteaucitron.userInterface.css(c + 'Icon', 'display', 'none'); tarteaucitron.userInterface.css(c + 'AlertBig', 'display', 'block'); tarteaucitron.userInterface.addClass(c + 'Root', 'tarteaucitronBeforeVisible'); + tarteaucitron.userInterface.css('tac_title', 'display', 'block'); //ie compatibility var tacOpenAlertEvent; @@ -1741,6 +1779,10 @@ var tarteaucitron = { } //end ie compatibility + if (tarteaucitron.parameters.showAlertSmall === false && tarteaucitron.parameters.showIcon === false) { + tarteaucitron.userInterface.css('tac_title', 'display', 'none'); + } + if (typeof(window.dispatchEvent) === 'function') {window.dispatchEvent(tacCloseAlertEvent);} }, "toggleCookiesList": function () { @@ -2019,7 +2061,7 @@ var tarteaucitron = { if (status >= 0 && nb === 0) { html += tarteaucitron.lang.useNoCookie; - } else if (status >= 0) { + } else if (nb > 0) { for (i = 0; i < nb; i += 1) { if (document.cookie.indexOf(arr[i] + '=') !== -1) { nbCurrent += 1; @@ -2098,14 +2140,14 @@ var tarteaucitron = { if (tarteaucitron.cookie.owner[name] !== undefined && tarteaucitron.cookie.owner[name].join(' // ') !== savedname) { savedname = tarteaucitron.cookie.owner[name].join(' // '); html += '
      '; - html += ' '; + html += ' '; html += ' ' + tarteaucitron.cookie.owner[name].join(' // '); html += ' '; html += '
      "}tarteaucitron.addInternalScript(tarteaucitron.cdn+"advertising"+(useMinifiedJS?".min":"")+".js","",function(){if(tarteaucitronNoAdBlocker===true||tarteaucitron.parameters.adblocker===false){div.id="tarteaucitronRoot";if(tarteaucitron.parameters.bodyPosition==="top"){var bodyFirstChild=body.firstChild;body.insertBefore(div,bodyFirstChild)}else{body.appendChild(div,body)}div.setAttribute("data-nosnippet","true");div.setAttribute("lang",language);div.setAttribute("role","region");div.setAttribute("aria-labelledby","tac_title");div.innerHTML=html;var tacRootAvailableEvent;if(typeof Event==="function"){tacRootAvailableEvent=new Event("tac.root_available")}else if(typeof document.createEvent==="function"){tacRootAvailableEvent=document.createEvent("Event");tacRootAvailableEvent.initEvent("tac.root_available",true,true)}if(typeof window.dispatchEvent==="function"){window.dispatchEvent(tacRootAvailableEvent)}if(tarteaucitron.job!==undefined){tarteaucitron.job=tarteaucitron.cleanArray(tarteaucitron.job);for(index=0;index';html+='

      ';html+=" "+tarteaucitron.lang.adblock+"
      ";html+=" "+tarteaucitron.lang.adblock_call+"";html+="

      ";html+=' ";html+="
      ";html+='
      '+tarteaucitron.lang.title+"
      ";html+='
      ';div.id="tarteaucitronRoot";if(tarteaucitron.parameters.bodyPosition==="top"){var bodyFirstChild=body.firstChild;body.insertBefore(div,bodyFirstChild)}else{body.appendChild(div,body)}div.setAttribute("data-nosnippet","true");div.setAttribute("lang",language);div.setAttribute("role","region");div.setAttribute("aria-labelledby","tac_title");div.innerHTML=html}},1500)}if(tarteaucitron.parameters.closePopup===true){setTimeout(function(){var closeElement=document.getElementById("tarteaucitronAlertBig"),closeButton=document.createElement("button");if(closeElement){closeButton.innerHTML=''+tarteaucitron.lang.closeBanner+"";closeButton.setAttribute("id","tarteaucitronCloseCross");closeElement.insertAdjacentElement("beforeend",closeButton)}},100)}if(tarteaucitron.parameters.groupServices===true){var tac_group_style=document.createElement("style");tac_group_style.innerHTML=".tarteaucitronTitle{display:none}";document.head.appendChild(tac_group_style);var cats=document.querySelectorAll('[id^="tarteaucitronServicesTitle_"]');Array.prototype.forEach.call(cats,function(item){var cat=item.getAttribute("id").replace(/^(tarteaucitronServicesTitle_)/,"");if(cat!=="mandatory"){var html="";html+='
    • ';html+='
      ';html+=' '+tarteaucitron.lang[cat].title+"";html+=" "+tarteaucitron.lang[cat].details+"";html+=' ';html+="
      ";html+='
      ';html+=' ";html+=' ";html+="
      ";html+="
    • ";var ul=document.createElement("ul");ul.innerHTML=html;item.insertBefore(ul,item.querySelector("#tarteaucitronServices_"+cat+""));document.querySelector("#tarteaucitronServices_"+cat).style.display="none";tarteaucitron.addClickEventToId("tarteaucitron-toggle-group-"+cat,function(){tarteaucitron.userInterface.toggle("tarteaucitronServices_"+cat);if(document.getElementById("tarteaucitronServices_"+cat).style.display=="block"){tarteaucitron.userInterface.addClass("tarteaucitronServicesTitle_"+cat,"tarteaucitronIsExpanded");document.getElementById("tarteaucitron-toggle-group-"+cat).setAttribute("aria-expanded","true")}else{tarteaucitron.userInterface.removeClass("tarteaucitronServicesTitle_"+cat,"tarteaucitronIsExpanded");document.getElementById("tarteaucitron-toggle-group-"+cat).setAttribute("aria-expanded","false")}});tarteaucitron.addClickEventToId("tarteaucitron-accept-group-"+cat,function(){tarteaucitron.userInterface.respondAll(true,cat)});tarteaucitron.addClickEventToId("tarteaucitron-reject-group-"+cat,function(){tarteaucitron.userInterface.respondAll(false,cat)})}})}if(tarteaucitron.parameters.partnersList===true&&(tarteaucitron.parameters.orientation==="middle"||tarteaucitron.parameters.orientation==="popup")){setTimeout(function(){var tacPartnersInfoParent=document.getElementById("tarteaucitronDisclaimerAlert");if(tacPartnersInfoParent!==null){tacPartnersInfoParent.insertAdjacentHTML("beforeend",'
      '+tarteaucitron.lang.ourpartners+'
        ')}},100)}setTimeout(function(){var tacSaveButtonParent=document.getElementById("tarteaucitronServices");if(tacSaveButtonParent!==null){tacSaveButtonParent.insertAdjacentHTML("beforeend",'
        ")}},100);tarteaucitron.userInterface.color("",true);setTimeout(function(){tarteaucitron.addClickEventToId("tarteaucitronCloseCross",function(){tarteaucitron.userInterface.closeAlert()});tarteaucitron.addClickEventToId("tarteaucitronPersonalize",function(){tarteaucitron.userInterface.openPanel()});tarteaucitron.addClickEventToId("tarteaucitronPersonalize2",function(){tarteaucitron.userInterface.respondAll(true)});tarteaucitron.addClickEventToId("tarteaucitronManager",function(){tarteaucitron.userInterface.openPanel()});tarteaucitron.addClickEventToId("tarteaucitronBack",function(){tarteaucitron.userInterface.closePanel()});tarteaucitron.addClickEventToId("tarteaucitronClosePanel",function(){tarteaucitron.userInterface.closePanel()});tarteaucitron.addClickEventToId("tarteaucitronClosePanelCookie",function(){tarteaucitron.userInterface.closePanel()});tarteaucitron.addClickEventToId("tarteaucitronPrivacyUrl",function(){document.location=tarteaucitron.parameters.privacyUrl});tarteaucitron.addClickEventToId("tarteaucitronPrivacyUrlDialog",function(){document.location=tarteaucitron.parameters.privacyUrl});tarteaucitron.addClickEventToId("tarteaucitronCookiesNumber",function(){tarteaucitron.userInterface.toggleCookiesList()});tarteaucitron.addClickEventToId("tarteaucitronAllAllowed",function(){tarteaucitron.userInterface.respondAll(true)});tarteaucitron.addClickEventToId("tarteaucitronAllDenied",function(){tarteaucitron.userInterface.respondAll(false)});tarteaucitron.addClickEventToId("tarteaucitronAllDenied2",function(){tarteaucitron.userInterface.respondAll(false,"",true);if(tarteaucitron.reloadThePage===true){window.location.reload()}});tarteaucitron.addClickEventToId("tarteaucitronCloseAlert",function(){tarteaucitron.userInterface.openPanel()});tarteaucitron.addClickEventToId("tarteaucitronCTAButton",function(){location.reload()});tarteaucitron.addClickEventToId("tarteaucitronSaveButton",function(){var timeoutSaveButton=0;tarteaucitron.job.forEach(function(id){if(tarteaucitron.state[id]!==true&&tarteaucitron.state[id]!==false){timeoutSaveButton=500;tarteaucitron.setConsent(id,false)}});setTimeout(tarteaucitron.userInterface.closePanel,timeoutSaveButton)});var toggleBtns=document.getElementsByClassName("catToggleBtn"),i;for(i=0;i=0,isDenied=cookie.indexOf(service.key+"=false")>=0,isAllowed=cookie.indexOf(service.key+"=true")>=0||!service.needConsent&&cookie.indexOf(service.key+"=false")<0,isResponded=cookie.indexOf(service.key+"=false")>=0||cookie.indexOf(service.key+"=true")>=0,isDNTRequested=navigator.doNotTrack==="1"||navigator.doNotTrack==="yes"||navigator.msDoNotTrack==="1"||window.doNotTrack==="1",currentStatus=isAllowed?tarteaucitron.lang.allowed:tarteaucitron.lang.disallowed,state=undefined!==service.defaultState?service.defaultState:undefined!==tarteaucitron.parameters.serviceDefaultState?tarteaucitron.parameters.serviceDefaultState:"wait";if(tarteaucitron.added[service.key]!==true){tarteaucitron.added[service.key]=true;html+='
      • ';html+='
        ';html+=' '+service.name+"";html+='
        ';html+=' '+currentStatus+"";html+=' - ';html+=' ';html+="
        ";if(tarteaucitron.parameters.moreInfoLink==true){var link="https://tarteaucitron.io/service/"+service.key+"/";if(service.readmoreLink!==undefined&&service.readmoreLink!==""){link=service.readmoreLink}if(tarteaucitron.parameters.readmoreLink!==undefined&&tarteaucitron.parameters.readmoreLink!==""){link=tarteaucitron.parameters.readmoreLink}html+=' '+tarteaucitron.lang.more+"";html+=' - ';html+=' '+tarteaucitron.lang.source+""}html+="
        ";html+='
        ';html+=' ";html+=' ";html+="
        ";html+="
      • ";tarteaucitron.userInterface.css("tarteaucitronServicesTitle_"+service.type,"display","block");if(document.getElementById("tarteaucitronServices_"+service.type)!==null){document.getElementById("tarteaucitronServices_"+service.type).innerHTML+=html}tarteaucitron.userInterface.css("tarteaucitronNoServicesTitle","display","none");tarteaucitron.userInterface.order(service.type);tarteaucitron.addClickEventToId(service.key+"Allowed",function(){tarteaucitron.userInterface.respond(this,true)});tarteaucitron.addClickEventToId(service.key+"Denied",function(){tarteaucitron.userInterface.respond(this,false)})}tarteaucitron.pro("!"+service.key+"="+isAllowed);if(isResponded===false&&tarteaucitron.user.bypass===true){isAllowed=true;tarteaucitron.cookie.create(service.key,true)}if(!isResponded&&(isAutostart||isNavigating&&isWaiting)&&!tarteaucitron.highPrivacy||isAllowed){if(!isAllowed||!service.needConsent&&cookie.indexOf(service.key+"=false")<0){tarteaucitron.cookie.create(service.key,true)}if(tarteaucitron.launch[service.key]!==true){tarteaucitron.launch[service.key]=true;if((typeof tarteaucitronMagic==="undefined"||tarteaucitronMagic.indexOf("_"+service.key+"_")<0)&&tarteaucitron.parameters.serverSide!==true){service.js()}tarteaucitron.sendEvent(service.key+"_loaded")}tarteaucitron.state[service.key]=true;tarteaucitron.userInterface.color(service.key,true)}else if(isDenied){if(typeof service.fallback==="function"){if((typeof tarteaucitronMagic==="undefined"||tarteaucitronMagic.indexOf("_"+service.key+"_")<0)&&tarteaucitron.parameters.serverSide!==true){service.fallback()}}tarteaucitron.state[service.key]=false;tarteaucitron.userInterface.color(service.key,false)}else if(!isResponded&&isDNTRequested&&tarteaucitron.handleBrowserDNTRequest){tarteaucitron.cookie.create(service.key,"false");if(typeof service.fallback==="function"){if((typeof tarteaucitronMagic==="undefined"||tarteaucitronMagic.indexOf("_"+service.key+"_")<0)&&tarteaucitron.parameters.serverSide!==true){service.fallback()}}tarteaucitron.state[service.key]=false;tarteaucitron.userInterface.color(service.key,false)}else if(!isResponded){tarteaucitron.cookie.create(service.key,state);if((typeof tarteaucitronMagic==="undefined"||tarteaucitronMagic.indexOf("_"+service.key+"_")<0)&&tarteaucitron.parameters.serverSide!==true){if(true===state&&typeof service.js==="function"){service.js()}else if(typeof service.fallback==="function"){service.fallback()}}if(true===state){tarteaucitron.sendEvent(service.key+"_loaded")}if(true===state||false===state){tarteaucitron.state[service.key]=state}tarteaucitron.userInterface.color(service.key,state);if("wait"===state){tarteaucitron.userInterface.openAlert()}}tarteaucitron.cookie.checkCount(service.key);tarteaucitron.sendEvent(service.key+"_added")},sendEvent:function(event_key){if(event_key!==undefined){var send_event_item;if(typeof Event==="function"){send_event_item=new Event(event_key)}else if(typeof document.createEvent==="function"){send_event_item=document.createEvent("Event");send_event_item.initEvent(event_key,true,true)}document.dispatchEvent(send_event_item)}},cleanArray:function cleanArray(arr){"use strict";var i,len=arr.length,out=[],obj={},s=tarteaucitron.services;for(i=0;is[b].type+s[b].key){return 1}if(s[a].type+s[a].key0&&status===false){tarteaucitron.cookie.purge(tarteaucitron.services[key].cookies)}if(status===true){if(document.getElementById("tacCL"+key)!==null){document.getElementById("tacCL"+key).innerHTML="..."}setTimeout(function(){tarteaucitron.cookie.checkCount(key)},2500)}else{tarteaucitron.cookie.checkCount(key)}}var cats=document.querySelectorAll('[id^="tarteaucitronServicesTitle_"]');Array.prototype.forEach.call(cats,function(item){var cat=item.getAttribute("id").replace(/^(tarteaucitronServicesTitle_)/,""),total=document.getElementById("tarteaucitronServices_"+cat).childElementCount;var doc=document.getElementById("tarteaucitronServices_"+cat),groupdenied=0,groupallowed=0;for(var ii=0;ii"+title+""});document.getElementById("tarteaucitronCounter-list").innerHTML=liPartners}},120)},openPanel:function(){"use strict";tarteaucitron.userInterface.css("tarteaucitron","display","block");tarteaucitron.userInterface.css("tarteaucitronBack","display","block");tarteaucitron.userInterface.css("tarteaucitronCookiesListContainer","display","none");document.getElementById("tarteaucitronClosePanel").focus();if(document.getElementsByTagName("body")[0].classList!==undefined){document.getElementsByTagName("body")[0].classList.add("tarteaucitron-modal-open")}tarteaucitron.userInterface.focusTrap("tarteaucitron");tarteaucitron.userInterface.jsSizing("main");var tacOpenPanelEvent;if(typeof Event==="function"){tacOpenPanelEvent=new Event("tac.open_panel")}else if(typeof document.createEvent==="function"){tacOpenPanelEvent=document.createEvent("Event");tacOpenPanelEvent.initEvent("tac.open_panel",true,true)}if(typeof window.dispatchEvent==="function"){window.dispatchEvent(tacOpenPanelEvent)}},closePanel:function(){"use strict";if(document.location.hash===tarteaucitron.hashtag){if(window.history){window.history.replaceState("",document.title,window.location.pathname+window.location.search)}else{document.location.hash=""}}if(tarteaucitron.checkIfExist("tarteaucitron")){if(tarteaucitron.checkIfExist("tarteaucitronCloseAlert")){document.getElementById("tarteaucitronCloseAlert").focus()}else if(tarteaucitron.checkIfExist("tarteaucitronManager")){document.getElementById("tarteaucitronManager").focus()}else if(tarteaucitron.customCloserId&&tarteaucitron.checkIfExist(tarteaucitron.customCloserId)){document.getElementById(tarteaucitron.customCloserId).focus()}tarteaucitron.userInterface.css("tarteaucitron","display","none")}if(tarteaucitron.checkIfExist("tarteaucitronCookiesListContainer")&&tarteaucitron.checkIfExist("tarteaucitronCookiesNumber")){document.getElementById("tarteaucitronCookiesNumber").focus();document.getElementById("tarteaucitronCookiesNumber").setAttribute("aria-expanded","false");tarteaucitron.userInterface.css("tarteaucitronCookiesListContainer","display","none")}tarteaucitron.fallback(["tarteaucitronInfoBox"],function(elem){elem.style.display="none"},true);if(tarteaucitron.reloadThePage===true){window.location.reload()}else{tarteaucitron.userInterface.css("tarteaucitronBack","display","none")}if(document.getElementsByTagName("body")[0].classList!==undefined){document.getElementsByTagName("body")[0].classList.remove("tarteaucitron-modal-open")}var tacClosePanelEvent;if(typeof Event==="function"){tacClosePanelEvent=new Event("tac.close_panel")}else if(typeof document.createEvent==="function"){tacClosePanelEvent=document.createEvent("Event");tacClosePanelEvent.initEvent("tac.close_panel",true,true)}if(typeof window.dispatchEvent==="function"){window.dispatchEvent(tacClosePanelEvent)}},focusTrap:function(parentElement){"use strict";var focusableEls,firstFocusableEl,lastFocusableEl,filtered;focusableEls=document.getElementById(parentElement).querySelectorAll("a[href], button");filtered=[];for(var i=0,max=focusableEls.length;i0){filtered.push(focusableEls[i])}}firstFocusableEl=filtered[0];lastFocusableEl=filtered[filtered.length-1];document.getElementById(parentElement).addEventListener("keydown",function(evt){if(evt.key==="Tab"||evt.keyCode===9){if(evt.shiftKey){if(document.activeElement===firstFocusableEl){lastFocusableEl.focus();evt.preventDefault()}}else{if(document.activeElement===lastFocusableEl){firstFocusableEl.focus();evt.preventDefault()}}}})},openAlert:function(){"use strict";var c="tarteaucitron";tarteaucitron.userInterface.css(c+"Percentage","display","block");tarteaucitron.userInterface.css(c+"AlertSmall","display","none");tarteaucitron.userInterface.css(c+"Icon","display","none");tarteaucitron.userInterface.css(c+"AlertBig","display","block");tarteaucitron.userInterface.addClass(c+"Root","tarteaucitronBeforeVisible");var tacOpenAlertEvent;if(typeof Event==="function"){tacOpenAlertEvent=new Event("tac.open_alert")}else if(typeof document.createEvent==="function"){tacOpenAlertEvent=document.createEvent("Event");tacOpenAlertEvent.initEvent("tac.open_alert",true,true)}if(document.getElementById("tarteaucitronAlertBig")!==null&&tarteaucitron.parameters.orientation==="middle"){document.getElementById("tarteaucitronAlertBig").focus()}if(typeof window.dispatchEvent==="function"){window.dispatchEvent(tacOpenAlertEvent)}},closeAlert:function(){"use strict";var c="tarteaucitron";tarteaucitron.userInterface.css(c+"Percentage","display","none");tarteaucitron.userInterface.css(c+"AlertSmall","display","block");tarteaucitron.userInterface.css(c+"Icon","display","block");tarteaucitron.userInterface.css(c+"AlertBig","display","none");tarteaucitron.userInterface.removeClass(c+"Root","tarteaucitronBeforeVisible");tarteaucitron.userInterface.jsSizing("box");var tacCloseAlertEvent;if(typeof Event==="function"){tacCloseAlertEvent=new Event("tac.close_alert")}else if(typeof document.createEvent==="function"){tacCloseAlertEvent=document.createEvent("Event");tacCloseAlertEvent.initEvent("tac.close_alert",true,true)}if(typeof window.dispatchEvent==="function"){window.dispatchEvent(tacCloseAlertEvent)}},toggleCookiesList:function(){"use strict";var div=document.getElementById("tarteaucitronCookiesListContainer"),togglediv=document.getElementById("tarteaucitronCookiesNumber");if(div===null){return}if(div.style.display!=="block"){tarteaucitron.cookie.number();div.style.display="block";togglediv.setAttribute("aria-expanded","true");tarteaucitron.userInterface.jsSizing("cookie");tarteaucitron.userInterface.css("tarteaucitron","display","none");tarteaucitron.userInterface.css("tarteaucitronBack","display","block");tarteaucitron.fallback(["tarteaucitronInfoBox"],function(elem){elem.style.display="none"},true)}else{div.style.display="none";togglediv.setAttribute("aria-expanded","false");tarteaucitron.userInterface.css("tarteaucitron","display","none");tarteaucitron.userInterface.css("tarteaucitronBack","display","none")}},toggle:function(id,closeClass){"use strict";var div=document.getElementById(id);if(div===null){return}if(closeClass!==undefined){tarteaucitron.fallback([closeClass],function(elem){if(elem.id!==id){elem.style.display="none"}},true)}if(div.style.display!=="block"){div.style.display="block"}else{div.style.display="none"}},order:function(id){"use strict";var main=document.getElementById("tarteaucitronServices_"+id),allDivs,store=[],i;if(main===null){return}allDivs=main.childNodes;if(typeof Array.prototype.map==="function"&&typeof Enumerable==="undefined"){Array.prototype.map.call(main.children,Object).sort(function(a,b){if(tarteaucitron.services[a.id.replace(/Line/g,"")].name>tarteaucitron.services[b.id.replace(/Line/g,"")].name){return 1}if(tarteaucitron.services[a.id.replace(/Line/g,"")].name=0&&nb===0){html+=tarteaucitron.lang.useNoCookie}else if(status>=0){for(i=0;i0){html+=tarteaucitron.lang.useCookieCurrent+" "+nbCurrent+" "+cookieLabel;if(nbCurrent>1){html+="s"}html+="."}else{html+=tarteaucitron.lang.useNoCookie}}else if(nb===0){html=tarteaucitron.lang.noCookie}else{html+=tarteaucitron.lang.useCookie+" "+nb+" "+cookieLabel;if(nb>1){html+="s"}html+="."}if(document.getElementById("tacCL"+key)!==null){document.getElementById("tacCL"+key).innerHTML=html}},crossIndexOf:function(arr,match){"use strict";var i;for(i=0;i1?"s":"",savedname,regex=/^https?\:\/\/([^\/?#]+)(?:[\/?#]|$)/i,regexedDomain=tarteaucitron.cdn.match(regex)!==null?tarteaucitron.cdn.match(regex)[1]:tarteaucitron.cdn,host=tarteaucitron.domain!==undefined?tarteaucitron.domain:regexedDomain;cookies=cookies.sort(function(a,b){namea=a.split("=",1).toString().replace(/ /g,"");nameb=b.split("=",1).toString().replace(/ /g,"");c=tarteaucitron.cookie.owner[namea]!==undefined?tarteaucitron.cookie.owner[namea]:"0";d=tarteaucitron.cookie.owner[nameb]!==undefined?tarteaucitron.cookie.owner[nameb]:"0";if(c+a>d+b){return 1}if(c+a';html+=' ';html+=" "+host;html+=" ";html+='
        "}else{html+='
        ';html+='
        -
        ';html+='
        ';html+="
        "}html+='
        ';if(document.getElementById("tarteaucitronCookiesList")!==null){document.getElementById("tarteaucitronCookiesList").innerHTML=html}if(document.getElementById("tarteaucitronCookiesNumber")!==null){document.getElementById("tarteaucitronCookiesNumber").innerHTML=nb;document.getElementById("tarteaucitronCookiesNumber").setAttribute("aria-label",nb+" cookie"+s+" - "+tarteaucitron.lang.toggleInfoBox);document.getElementById("tarteaucitronCookiesNumber").setAttribute("title",nb+" cookie"+s+" - "+tarteaucitron.lang.toggleInfoBox)}if(document.getElementById("tarteaucitronCookiesNumberBis")!==null){document.getElementById("tarteaucitronCookiesNumberBis").innerHTML=nb+" cookie"+s}var purgeBtns=document.getElementsByClassName("purgeBtn");for(i=0;i/g,">").replace(/"/g,""").replace(/'/g,"'")},getLanguage:function(){"use strict";var availableLanguages="ar,bg,ca,cn,cs,da,de,et,el,en,es,fi,fr,hr,hu,it,ja,ko,lb,lt,lv,nl,no,oc,pl,pt,ro,ru,se,sk,sq,sv,tr,uk,vi,zh",defaultLanguage="en";if(tarteaucitronForceLanguage!==""){if(availableLanguages.indexOf(tarteaucitronForceLanguage)!==-1){return tarteaucitronForceLanguage}}if(document.documentElement.getAttribute("lang")!==undefined&&document.documentElement.getAttribute("lang")!==null&&document.documentElement.getAttribute("lang")!==""){if(availableLanguages.indexOf(document.documentElement.getAttribute("lang").substr(0,2))!==-1){return document.documentElement.getAttribute("lang").substr(0,2)}}if(!navigator){return defaultLanguage}var lang=navigator.language||navigator.browserLanguage||navigator.systemLanguage||navigator.userLang||null,userLanguage=lang?lang.substr(0,2):null;if(availableLanguages.indexOf(userLanguage)!==-1){return userLanguage}return defaultLanguage},getLocale:function(){"use strict";if(!navigator){return"en_US"}var lang=navigator.language||navigator.browserLanguage||navigator.systemLanguage||navigator.userLang||null,userLanguage=lang?lang.substr(0,2):null;if(userLanguage==="fr"){return"fr_FR"}else if(userLanguage==="en"){return"en_US"}else if(userLanguage==="de"){return"de_DE"}else if(userLanguage==="es"){return"es_ES"}else if(userLanguage==="it"){return"it_IT"}else if(userLanguage==="pt"){return"pt_PT"}else if(userLanguage==="nl"){return"nl_NL"}else if(userLanguage==="el"){return"el_EL"}else{return"en_US"}},addScript:function(url,id,callback,execute,attrName,attrVal,internal){"use strict";var script,done=false;if(execute===false){if(typeof callback==="function"){callback()}}else{script=document.createElement("script");if(id!==undefined&&id!==""){script.id=id}script.async=true;script.src=url;if(attrName!==undefined&&attrVal!==undefined){script.setAttribute(attrName,attrVal)}if(typeof callback==="function"){if(!tarteaucitron.parameters.useExternalJs||!internal){script.onreadystatechange=script.onload=function(){var state=script.readyState;if(!done&&(!state||/loaded|complete/.test(state))){done=true;callback()}}}else{callback()}}if(!tarteaucitron.parameters.useExternalJs||!internal){document.getElementsByTagName("head")[0].appendChild(script)}}},addInternalScript:function(url,id,callback,execute,attrName,attrVal){tarteaucitron.addScript(url,id,callback,execute,attrName,attrVal,true)},checkIfExist:function(elemId){"use strict";return document.getElementById(elemId)!==null&&document.getElementById(elemId).offsetWidth!==0&&document.getElementById(elemId).offsetHeight!==0},makeAsync:{antiGhost:0,buffer:"",init:function(url,id){"use strict";var savedWrite=document.write,savedWriteln=document.writeln;document.write=function(content){tarteaucitron.makeAsync.buffer+=content};document.writeln=function(content){tarteaucitron.makeAsync.buffer+=content.concat("\n")};setTimeout(function(){document.write=savedWrite;document.writeln=savedWriteln},2e4);tarteaucitron.makeAsync.getAndParse(url,id)},getAndParse:function(url,id){"use strict";if(tarteaucitron.makeAsync.antiGhost>9){tarteaucitron.makeAsync.antiGhost=0;return}tarteaucitron.makeAsync.antiGhost+=1;tarteaucitron.addInternalScript(url,"",function(){if(document.getElementById(id)!==null){document.getElementById(id).innerHTML+=" "+tarteaucitron.makeAsync.buffer;tarteaucitron.makeAsync.buffer="";tarteaucitron.makeAsync.execJS(id)}})},execJS:function(id){var i,scripts,childId,type;if(document.getElementById(id)===null){return}scripts=document.getElementById(id).getElementsByTagName("script");for(i=0;i
        ';tarteaucitron.makeAsync.getAndParse(scripts[i].getAttribute("src"),childId)}else if(type.indexOf("javascript")!==-1||type===""){eval(scripts[i].innerHTML)}}}},fallback:function(matchClass,content,noInner){"use strict";var selector=matchClass.map(function(cls){return"."+cls}).join(", ");var elems=document.querySelectorAll(selector);for(var i=0;i';html+='
        ';html+=" "+engage;html+=' ";html+="
        ";html+="";return html},extend:function(a,b){"use strict";var prop;for(prop in b){if(b.hasOwnProperty(prop)){a[prop]=b[prop]}}},proTemp:"",proTimer:function(){"use strict";setTimeout(tarteaucitron.proPing,Math.floor(Math.random()*(1200-500+1))+500)},pro:function(list){"use strict";tarteaucitron.proTemp+=list;clearTimeout(tarteaucitron.proTimer);tarteaucitron.proTimer=setTimeout(tarteaucitron.proPing,Math.floor(Math.random()*(1200-500+1))+500)},proPing:function(){"use strict";if(tarteaucitron.uuid!==""&&tarteaucitron.uuid!==undefined&&tarteaucitron.proTemp!==""&&tarteaucitronStatsEnabled){var div=document.getElementById("tarteaucitronPremium"),timestamp=(new Date).getTime(),url="https://tarteaucitron.io/log/?";if(div===null){return}url+="account="+tarteaucitron.uuid+"&";url+="domain="+tarteaucitron.domain+"&";url+="status="+encodeURIComponent(tarteaucitron.proTemp)+"&";url+="_time="+timestamp;div.innerHTML='';tarteaucitron.proTemp=""}tarteaucitron.cookie.number()},AddOrUpdate:function(source,custom){for(var key in custom){if(key==="__proto__"||key==="constructor")continue;if(custom.hasOwnProperty(key)){if(custom[key]instanceof Object){source[key]=tarteaucitron.AddOrUpdate(source[key],custom[key])}else{source[key]=custom[key]}}}return source},getElemWidth:function(elem){return tarteaucitron.getElemAttr(elem,"width")||elem.clientWidth},getElemHeight:function(elem){return tarteaucitron.getElemAttr(elem,"height")||elem.clientHeight},getElemAttr:function(elem,attr){var attribute=elem.getAttribute("data-"+attr)||elem.getAttribute(attr)||elem.getAttribute(attr.startsWith("data-")?attr.slice(5):attr);if((attr==="url"||attr==="data-url"||attr==="data-src")&&!/^https?:\/\/[^\s]+$/.test(elem.getAttribute(attr))){return""}if(attr==="srcdoc"||attr==="data-srcdoc"){attribute=elem.getAttribute("srcdoc")}if(typeof attribute==="string"){return tarteaucitron.fixSelfXSS(attribute)}return""},getStyleSize:function(value){if(value==null){return"auto"}value=String(value).trim();var units=["px","%","em","rem","vh","vw","vmin","vmax","ch","ex","pt","pc","cm","mm","in","q"];var pattern=new RegExp("^\\d+(\\.\\d+)?("+units.join("|")+")$");if(pattern.test(value)){return value}if(/^\d+(\.\d+)?$/.test(value)){return value+"px"}return"auto"},addClickEventToId:function(elemId,func){tarteaucitron.addClickEventToElement(document.getElementById(elemId),func)},addClickEventToElement:function(e,func){if(e){if(e.addEventListener){e.addEventListener("click",func)}else{e.attachEvent("onclick",func)}}},triggerJobsAfterAjaxCall:function(){tarteaucitron.job.forEach(function(e){tarteaucitron.job.push(e)});var i;var allowBtns=document.getElementsByClassName("tarteaucitronAllow");for(i=0;i=0){if(evt.shiftKey){if(document.activeElement===firstFocusableEl){lastFocusableEl.focus();evt.preventDefault()}}else{if(document.activeElement===lastFocusableEl){firstFocusableEl.focus();evt.preventDefault()}}}}},hashchangeEvent:function(){if(document.location.hash===tarteaucitron.hashtag&&tarteaucitron.hashtag!==""){tarteaucitron.userInterface.openPanel()}},resizeEvent:function(){var tacElem=document.getElementById("tarteaucitron");var tacCookieContainer=document.getElementById("tarteaucitronCookiesListContainer");if(tacElem&&tacElem.style.display==="block"){tarteaucitron.userInterface.jsSizing("main")}if(tacCookieContainer&&tacCookieContainer.style.display==="block"){tarteaucitron.userInterface.jsSizing("cookie")}},scrollEvent:function(){var scrollPos=window.pageYOffset||document.documentElement.scrollTop;var heightPosition;var tacPercentage=document.getElementById("tarteaucitronPercentage");var tacAlertBig=document.getElementById("tarteaucitronAlertBig");if(tacAlertBig&&!tarteaucitron.highPrivacy){if(tacAlertBig.style.display==="block"){heightPosition=tacAlertBig.offsetHeight+"px";if(scrollPos>screen.height*2){tarteaucitron.userInterface.respondAll(true)}else if(scrollPos>screen.height/2){document.getElementById("tarteaucitronDisclaimerAlert").innerHTML=""+tarteaucitron.lang.alertBigScroll+" "+tarteaucitron.lang.alertBig}if(tacPercentage){if(tarteaucitron.orientation==="top"){tacPercentage.style.top=heightPosition}else{tacPercentage.style.bottom=heightPosition}tacPercentage.style.width=100/(screen.height*2)*scrollPos+"%"}}}}},load:function(){"use strict";if(tarteaucitronIsLoaded===true){return}var cdn=tarteaucitron.cdn,language=tarteaucitron.getLanguage(),useMinifiedJS=new URL(cdn,tarteaucitronPath).host=="cdn.jsdelivr.net"||tarteaucitronPath.indexOf(".min.")>=0||tarteaucitronUseMin!=="",pathToLang=cdn+"lang/tarteaucitron."+language+(useMinifiedJS?".min":"")+".js?v="+tarteaucitron.version,pathToServices=cdn+"tarteaucitron.services"+(useMinifiedJS?".min":"")+".js?v="+tarteaucitron.version,linkElement=document.createElement("link"),defaults={adblocker:false,hashtag:"#tarteaucitron",cookieName:"tarteaucitron",highPrivacy:true,orientation:"middle",bodyPosition:"bottom",removeCredit:false,showAlertSmall:false,showDetailsOnClick:true,showIcon:true,iconPosition:"BottomRight",cookieslist:false,cookieslistEmbed:false,handleBrowserDNTRequest:false,DenyAllCta:true,AcceptAllCta:true,moreInfoLink:true,privacyUrl:"",useExternalCss:false,useExternalJs:false,mandatory:true,mandatoryCta:true,closePopup:false,groupServices:false,serviceDefaultState:"wait",googleConsentMode:true,bingConsentMode:true,softConsentMode:false,dataLayer:false,serverSide:false,partnersList:false,alwaysNeedConsent:false},params=tarteaucitron.parameters;tarteaucitronIsLoaded=true;if((tarteaucitron.parameters.readmoreLink!==undefined&&window.location.href==tarteaucitron.parameters.readmoreLink||window.location.href==tarteaucitron.parameters.privacyUrl)&&tarteaucitron.parameters.orientation=="middle"){tarteaucitron.parameters.orientation="bottom"}if(typeof tarteaucitronCustomPremium!=="undefined"){tarteaucitronCustomPremium()}if(params!==undefined){for(var k in defaults){if(!tarteaucitron.parameters.hasOwnProperty(k)){tarteaucitron.parameters[k]=defaults[k]}}}tarteaucitron.orientation=tarteaucitron.parameters.orientation;tarteaucitron.hashtag=tarteaucitron.parameters.hashtag;tarteaucitron.highPrivacy=tarteaucitron.parameters.highPrivacy;tarteaucitron.handleBrowserDNTRequest=tarteaucitron.parameters.handleBrowserDNTRequest;tarteaucitron.customCloserId=tarteaucitron.parameters.customCloserId;if(tarteaucitron.parameters.dataLayer===true){window.addEventListener("tac.root_available",function(){setTimeout(function(){window.dataLayer=window.dataLayer||[];tarteaucitron.job.filter(job=>tarteaucitron.state[job]===true).length>0&&window.dataLayer.push({event:"tac_consent_update",tacAuthorizedVendors:tarteaucitron.job.filter(job=>tarteaucitron.state[job]===true)})},200)});document.addEventListener("tac.consent_updated",function(){window.dataLayer=window.dataLayer||[];tarteaucitron.job.filter(job=>tarteaucitron.state[job]===true).length>0&&window.dataLayer.push({event:"tac_consent_update",tacAuthorizedVendors:tarteaucitron.job.filter(job=>tarteaucitron.state[job]===true)})})}if(tarteaucitron.parameters.bingConsentMode===true){window.uetq=window.uetq||[];window.uetq.push("consent","default",{ad_storage:"denied"});document.addEventListener("clarity_consentModeOk",function(){window.uetq.push("consent","update",{ad_storage:"granted"})},{once:true});document.addEventListener("clarity_consentModeKo",function(){window.uetq.push("consent","update",{ad_storage:"denied"})},{once:true});document.addEventListener("bingads_consentModeOk",function(){window.uetq.push("consent","update",{ad_storage:"granted"})},{once:true});document.addEventListener("bingads_consentModeKo",function(){window.uetq.push("consent","update",{ad_storage:"denied"})},{once:true});if(tarteaucitron.parameters.softConsentMode===false){window.addEventListener("tac.root_available",function(){if(typeof tarteaucitron_block!=="undefined"){tarteaucitron_block.unblock(/clarity\.ms/);tarteaucitron_block.unblock(/bat\.bing\.com/)}})}}if(tarteaucitron.parameters.googleConsentMode===true){window.dataLayer=window.dataLayer||[];window.tac_gtag=function tac_gtag(){dataLayer.push(arguments)};window.tac_gtag("consent","default",{ad_storage:"denied",analytics_storage:"denied",ad_user_data:"denied",ad_personalization:"denied",wait_for_update:800});document.addEventListener("googleads_added",function(){if(tarteaucitron.added["gcmads"]===true){return}tarteaucitron.services.gcmads={key:"gcmads",type:"ads",name:"Google Ads (personalized ads)",uri:"https://support.google.com/analytics/answer/9976101",needConsent:true,cookies:[],js:function(){},fallback:function(){}};tarteaucitron.job.push("gcmads");var i,allowBtns=document.getElementsByClassName("tarteaucitronAllow"),denyBtns=document.getElementsByClassName("tarteaucitronDeny");for(i=0;itarteaucitron.lang[b].title){return 1}if(tarteaucitron.lang[a].title)/i.test(tarteaucitron.lang.disclaimer)){tarteaucitron.lang.disclaimer="

        "+tarteaucitron.lang.disclaimer+"

        "}html+='
        '+tarteaucitron.lang.title+"
        ";html+='
        ';if(tarteaucitron.reloadThePage){html+=''}else{html+=''}html+='";if(tarteaucitron.parameters.orientation==="bottom"){orientation="Bottom"}if(tarteaucitron.parameters.orientation==="middle"||tarteaucitron.parameters.orientation==="popup"){modalAttrs=' role="dialog" aria-modal="true" aria-labelledby="tac_title"'}if(tarteaucitron.parameters.highPrivacy&&!tarteaucitron.parameters.AcceptAllCta){html+='
        ";html+=' ';html+=" "+tarteaucitron.lang.alertBigPrivacy;html+=" ";html+=' ";if(tarteaucitron.parameters.privacyUrl!==""){html+=' "}html+="
        "}else{html+='
        ";html+=' ';if(tarteaucitron.parameters.highPrivacy){html+=" "+tarteaucitron.lang.alertBigPrivacy}else{html+=" "+tarteaucitron.lang.alertBigClick+" "+tarteaucitron.lang.alertBig}html+=" ";html+=' ";if(tarteaucitron.parameters.DenyAllCta){if(tarteaucitron.reloadThePage){html+=' "}html+=' ";if(tarteaucitron.parameters.privacyUrl!==""){html+=' "}html+="
        ";html+='
        '}if(tarteaucitron.parameters.showIcon===true){html+='
        ';html+=' ";html+="
        "}if(tarteaucitron.parameters.showAlertSmall===true){html+='
        ';html+=' \x3c!-- @whitespace";html+=' --\x3e';html+='
        ';if(tarteaucitron.reloadThePage){html+=' ";html+='
        ';html+=' 0 cookie';html+="
        ";html+='
        ';html+="
        "}else{html+="
        "}html+=""}tarteaucitron.addInternalScript(tarteaucitron.cdn+"advertising"+(useMinifiedJS?".min":"")+".js","",function(){if(tarteaucitronNoAdBlocker===true||tarteaucitron.parameters.adblocker===false){div.id="tarteaucitronRoot";if(tarteaucitron.parameters.bodyPosition==="top"){var bodyFirstChild=body.firstChild;body.insertBefore(div,bodyFirstChild)}else{body.appendChild(div,body)}tarteaucitron.userInterface.addClass("tarteaucitronRoot","tarteaucitronSize-"+tarteaucitron.parameters.orientation);div.setAttribute("data-nosnippet","true");div.setAttribute("lang",language);div.setAttribute("role","region");div.setAttribute("aria-labelledby","tac_title");div.innerHTML=html;var tacRootAvailableEvent;if(typeof Event==="function"){tacRootAvailableEvent=new Event("tac.root_available")}else if(typeof document.createEvent==="function"){tacRootAvailableEvent=document.createEvent("Event");tacRootAvailableEvent.initEvent("tac.root_available",true,true)}if(typeof window.dispatchEvent==="function"){window.dispatchEvent(tacRootAvailableEvent)}if(tarteaucitron.job!==undefined){tarteaucitron.job=tarteaucitron.cleanArray(tarteaucitron.job);for(index=0;index';html+='

        ';html+=" "+tarteaucitron.lang.adblock+"
        ";html+=" "+tarteaucitron.lang.adblock_call+"";html+="

        ";html+=' ";html+="";html+='
        '+tarteaucitron.lang.title+"
        ";html+='
        ';div.id="tarteaucitronRoot";if(tarteaucitron.parameters.bodyPosition==="top"){var bodyFirstChild=body.firstChild;body.insertBefore(div,bodyFirstChild)}else{body.appendChild(div,body)}div.setAttribute("data-nosnippet","true");div.setAttribute("lang",language);div.setAttribute("role","region");div.setAttribute("aria-labelledby","tac_title");div.innerHTML=html}},1500)}if(tarteaucitron.parameters.closePopup===true){setTimeout(function(){var closeElement=document.getElementById("tarteaucitronAlertBig"),closeButton=document.createElement("button");if(closeElement){closeButton.innerHTML=''+tarteaucitron.lang.closeBanner+"";closeButton.setAttribute("id","tarteaucitronCloseCross");closeElement.insertAdjacentElement("beforeend",closeButton)}},100)}if(tarteaucitron.parameters.groupServices===true){var tac_group_style=document.createElement("style");tac_group_style.innerHTML=".tarteaucitronTitle{display:none}";document.head.appendChild(tac_group_style);var cats=document.querySelectorAll('[id^="tarteaucitronServicesTitle_"]');Array.prototype.forEach.call(cats,function(item){var cat=item.getAttribute("id").replace(/^(tarteaucitronServicesTitle_)/,"");if(cat!=="mandatory"){var html="";html+='
      • ';html+='
        ';html+=' '+tarteaucitron.lang[cat].title+"";html+=" "+tarteaucitron.lang[cat].details+"";html+=' ';html+="
        ";html+='
        ';html+=' ";html+=' ";html+="
        ";html+="
      • ";var ul=document.createElement("ul");ul.innerHTML=html;item.insertBefore(ul,item.querySelector("#tarteaucitronServices_"+cat+""));document.querySelector("#tarteaucitronServices_"+cat).style.display="none";tarteaucitron.addClickEventToId("tarteaucitron-toggle-group-"+cat,function(){tarteaucitron.userInterface.toggle("tarteaucitronServices_"+cat);if(document.getElementById("tarteaucitronServices_"+cat).style.display=="block"){tarteaucitron.userInterface.addClass("tarteaucitronServicesTitle_"+cat,"tarteaucitronIsExpanded");document.getElementById("tarteaucitron-toggle-group-"+cat).setAttribute("aria-expanded","true")}else{tarteaucitron.userInterface.removeClass("tarteaucitronServicesTitle_"+cat,"tarteaucitronIsExpanded");document.getElementById("tarteaucitron-toggle-group-"+cat).setAttribute("aria-expanded","false")}});tarteaucitron.addClickEventToId("tarteaucitron-accept-group-"+cat,function(){tarteaucitron.userInterface.respondAll(true,cat)});tarteaucitron.addClickEventToId("tarteaucitron-reject-group-"+cat,function(){tarteaucitron.userInterface.respondAll(false,cat)})}})}if(tarteaucitron.parameters.partnersList===true&&(tarteaucitron.parameters.orientation==="middle"||tarteaucitron.parameters.orientation==="popup")){setTimeout(function(){var tacPartnersInfoParent=document.getElementById("tarteaucitronDisclaimerAlert");if(tacPartnersInfoParent!==null){tacPartnersInfoParent.insertAdjacentHTML("beforeend",'
        '+tarteaucitron.lang.ourpartners+'
          ')}},100)}setTimeout(function(){var tacSaveButtonParent=document.getElementById("tarteaucitronServices");if(tacSaveButtonParent!==null){tacSaveButtonParent.insertAdjacentHTML("beforeend",'
          ")}},100);tarteaucitron.userInterface.color("",true);setTimeout(function(){tarteaucitron.addClickEventToId("tarteaucitronCloseCross",function(){tarteaucitron.userInterface.closeAlert()});tarteaucitron.addClickEventToId("tarteaucitronPersonalize",function(){tarteaucitron.userInterface.openPanel()});tarteaucitron.addClickEventToId("tarteaucitronPersonalize2",function(){tarteaucitron.userInterface.respondAll(true)});tarteaucitron.addClickEventToId("tarteaucitronManager",function(){tarteaucitron.userInterface.openPanel()});tarteaucitron.addClickEventToId("tarteaucitronBack",function(){tarteaucitron.userInterface.closePanel()});tarteaucitron.addClickEventToId("tarteaucitronClosePanel",function(){tarteaucitron.userInterface.closePanel()});tarteaucitron.addClickEventToId("tarteaucitronClosePanelCookie",function(){tarteaucitron.userInterface.closePanel()});tarteaucitron.addClickEventToId("tarteaucitronPrivacyUrl",function(){document.location=tarteaucitron.parameters.privacyUrl});tarteaucitron.addClickEventToId("tarteaucitronPrivacyUrlDialog",function(){document.location=tarteaucitron.parameters.privacyUrl});tarteaucitron.addClickEventToId("tarteaucitronCookiesNumber",function(){tarteaucitron.userInterface.toggleCookiesList()});tarteaucitron.addClickEventToId("tarteaucitronAllAllowed",function(){tarteaucitron.userInterface.respondAll(true)});tarteaucitron.addClickEventToId("tarteaucitronAllDenied",function(){tarteaucitron.userInterface.respondAll(false)});tarteaucitron.addClickEventToId("tarteaucitronAllDenied2",function(){tarteaucitron.userInterface.respondAll(false,"",true);if(tarteaucitron.reloadThePage===true){window.location.reload()}});tarteaucitron.addClickEventToId("tarteaucitronCloseAlert",function(){tarteaucitron.userInterface.openPanel()});tarteaucitron.addClickEventToId("tarteaucitronCTAButton",function(){location.reload()});tarteaucitron.addClickEventToId("tarteaucitronSaveButton",function(){var timeoutSaveButton=0;tarteaucitron.job.forEach(function(id){if(tarteaucitron.state[id]!==true&&tarteaucitron.state[id]!==false){timeoutSaveButton=500;tarteaucitron.setConsent(id,false)}});setTimeout(tarteaucitron.userInterface.closePanel,timeoutSaveButton)});var toggleBtns=document.getElementsByClassName("catToggleBtn"),i;for(i=0;i=0,isDenied=cookie.indexOf(service.key+"=false")>=0,isAllowed=cookie.indexOf(service.key+"=true")>=0||!service.needConsent&&cookie.indexOf(service.key+"=false")<0,isResponded=cookie.indexOf(service.key+"=false")>=0||cookie.indexOf(service.key+"=true")>=0,isDNTRequested=navigator.doNotTrack==="1"||navigator.doNotTrack==="yes"||navigator.msDoNotTrack==="1"||window.doNotTrack==="1",currentStatus=isAllowed?tarteaucitron.lang.allowed:tarteaucitron.lang.disallowed,state=undefined!==service.defaultState?service.defaultState:undefined!==tarteaucitron.parameters.serviceDefaultState?tarteaucitron.parameters.serviceDefaultState:"wait";if(tarteaucitron.added[service.key]!==true){tarteaucitron.added[service.key]=true;html+='
        • ';html+='
          ';html+=' '+service.name+"";html+='
          ';html+=' '+currentStatus+"";html+=' - ';html+=' ';html+="
          ";if(tarteaucitron.parameters.moreInfoLink==true){var link;if(tarteaucitron.getLanguage()==="fr"){link="https://tarteaucitron.io/service/"+service.key+"/"}else{link="https://tarteaucitron.io/en/service-details/"+service.key+"/"}if(service.readmoreLink!==undefined&&service.readmoreLink!==""){link=service.readmoreLink}if(tarteaucitron.parameters.readmoreLink!==undefined&&tarteaucitron.parameters.readmoreLink!==""){link=tarteaucitron.parameters.readmoreLink}html+=' '+tarteaucitron.lang.more+"";html+=' - ';html+=' '+tarteaucitron.lang.source+""}html+="
          ";html+='
          ';html+=' ";html+=' ";html+="
          ";html+="
        • ";tarteaucitron.userInterface.css("tarteaucitronServicesTitle_"+service.type,"display","block");if(document.getElementById("tarteaucitronServices_"+service.type)!==null){document.getElementById("tarteaucitronServices_"+service.type).innerHTML+=html}tarteaucitron.userInterface.css("tarteaucitronNoServicesTitle","display","none");tarteaucitron.userInterface.order(service.type);tarteaucitron.addClickEventToId(service.key+"Allowed",function(){tarteaucitron.userInterface.respond(this,true)});tarteaucitron.addClickEventToId(service.key+"Denied",function(){tarteaucitron.userInterface.respond(this,false)})}tarteaucitron.pro("!"+service.key+"="+isAllowed);if(isResponded===false&&tarteaucitron.user.bypass===true){isAllowed=true;tarteaucitron.cookie.create(service.key,true)}if(!isResponded&&(isAutostart||isNavigating&&isWaiting)&&!tarteaucitron.highPrivacy||isAllowed){if(!isAllowed||!service.needConsent&&cookie.indexOf(service.key+"=false")<0){tarteaucitron.cookie.create(service.key,true)}if(tarteaucitron.launch[service.key]!==true){tarteaucitron.launch[service.key]=true;tarteaucitron.sendEvent(service.key+"_consentModeOk");if((typeof tarteaucitronMagic==="undefined"||tarteaucitronMagic.indexOf("_"+service.key+"_")<0)&&tarteaucitron.parameters.serverSide!==true){service.js()}tarteaucitron.sendEvent(service.key+"_loaded")}tarteaucitron.state[service.key]=true;tarteaucitron.userInterface.color(service.key,true)}else if(isDenied){if(typeof service.fallback==="function"){if((typeof tarteaucitronMagic==="undefined"||tarteaucitronMagic.indexOf("_"+service.key+"_")<0)&&tarteaucitron.parameters.serverSide!==true){service.fallback()}}tarteaucitron.state[service.key]=false;tarteaucitron.userInterface.color(service.key,false)}else if(!isResponded&&isDNTRequested&&tarteaucitron.handleBrowserDNTRequest){tarteaucitron.cookie.create(service.key,"false");if(typeof service.fallback==="function"){if((typeof tarteaucitronMagic==="undefined"||tarteaucitronMagic.indexOf("_"+service.key+"_")<0)&&tarteaucitron.parameters.serverSide!==true){service.fallback()}}tarteaucitron.state[service.key]=false;tarteaucitron.userInterface.color(service.key,false)}else if(!isResponded){tarteaucitron.cookie.create(service.key,state);if(true===state){tarteaucitron.sendEvent(service.key+"_consentModeOk")}if((typeof tarteaucitronMagic==="undefined"||tarteaucitronMagic.indexOf("_"+service.key+"_")<0)&&tarteaucitron.parameters.serverSide!==true){if(true===state&&typeof service.js==="function"){service.js()}else if(typeof service.fallback==="function"){service.fallback()}}if(true===state){tarteaucitron.sendEvent(service.key+"_loaded")}if(true===state||false===state){tarteaucitron.state[service.key]=state}tarteaucitron.userInterface.color(service.key,state);if("wait"===state){tarteaucitron.userInterface.openAlert()}}tarteaucitron.cookie.checkCount(service.key);tarteaucitron.sendEvent(service.key+"_added")},sendEvent:function(event_key){if(event_key!==undefined){var send_event_item;if(typeof Event==="function"){send_event_item=new Event(event_key)}else if(typeof document.createEvent==="function"){send_event_item=document.createEvent("Event");send_event_item.initEvent(event_key,true,true)}document.dispatchEvent(send_event_item)}},cleanArray:function cleanArray(arr){"use strict";var i,len=arr.length,out=[],obj={},s=tarteaucitron.services;for(i=0;is[b].type+s[b].key){return 1}if(s[a].type+s[a].key0&&status===false){tarteaucitron.cookie.purge(tarteaucitron.services[key].cookies)}if(status===true){if(document.getElementById("tacCL"+key)!==null){document.getElementById("tacCL"+key).innerHTML="..."}setTimeout(function(){tarteaucitron.cookie.checkCount(key)},2500)}else{tarteaucitron.cookie.checkCount(key)}}var cats=document.querySelectorAll('[id^="tarteaucitronServicesTitle_"]');Array.prototype.forEach.call(cats,function(item){var cat=item.getAttribute("id").replace(/^(tarteaucitronServicesTitle_)/,""),total=document.getElementById("tarteaucitronServices_"+cat).childElementCount;var doc=document.getElementById("tarteaucitronServices_"+cat),groupdenied=0,groupallowed=0;for(var ii=0;ii"+title+""});document.getElementById("tarteaucitronCounter-list").innerHTML=liPartners}},120)},openPanel:function(){"use strict";tarteaucitron.userInterface.css("tarteaucitron","display","block");tarteaucitron.userInterface.css("tarteaucitronBack","display","block");tarteaucitron.userInterface.css("tarteaucitronCookiesListContainer","display","none");document.getElementById("tarteaucitronClosePanel").focus();if(document.getElementsByTagName("body")[0].classList!==undefined){document.getElementsByTagName("body")[0].classList.add("tarteaucitron-modal-open")}tarteaucitron.userInterface.focusTrap("tarteaucitron");tarteaucitron.userInterface.jsSizing("main");var tacOpenPanelEvent;if(typeof Event==="function"){tacOpenPanelEvent=new Event("tac.open_panel")}else if(typeof document.createEvent==="function"){tacOpenPanelEvent=document.createEvent("Event");tacOpenPanelEvent.initEvent("tac.open_panel",true,true)}if(typeof window.dispatchEvent==="function"){window.dispatchEvent(tacOpenPanelEvent)}},closePanel:function(){"use strict";if(document.location.hash===tarteaucitron.hashtag){if(window.history){window.history.replaceState("",document.title,window.location.pathname+window.location.search)}else{document.location.hash=""}}if(tarteaucitron.checkIfExist("tarteaucitron")){if(tarteaucitron.checkIfExist("tarteaucitronCloseAlert")){document.getElementById("tarteaucitronCloseAlert").focus()}else if(tarteaucitron.checkIfExist("tarteaucitronManager")){document.getElementById("tarteaucitronManager").focus()}else if(tarteaucitron.customCloserId&&tarteaucitron.checkIfExist(tarteaucitron.customCloserId)){document.getElementById(tarteaucitron.customCloserId).focus()}tarteaucitron.userInterface.css("tarteaucitron","display","none")}if(tarteaucitron.checkIfExist("tarteaucitronCookiesListContainer")&&tarteaucitron.checkIfExist("tarteaucitronCookiesNumber")){document.getElementById("tarteaucitronCookiesNumber").focus();document.getElementById("tarteaucitronCookiesNumber").setAttribute("aria-expanded","false");tarteaucitron.userInterface.css("tarteaucitronCookiesListContainer","display","none")}tarteaucitron.fallback(["tarteaucitronInfoBox"],function(elem){elem.style.display="none"},true);if(tarteaucitron.reloadThePage===true){window.location.reload()}else{tarteaucitron.userInterface.css("tarteaucitronBack","display","none")}if(document.getElementsByTagName("body")[0].classList!==undefined){document.getElementsByTagName("body")[0].classList.remove("tarteaucitron-modal-open")}var tacClosePanelEvent;if(typeof Event==="function"){tacClosePanelEvent=new Event("tac.close_panel")}else if(typeof document.createEvent==="function"){tacClosePanelEvent=document.createEvent("Event");tacClosePanelEvent.initEvent("tac.close_panel",true,true)}if(typeof window.dispatchEvent==="function"){window.dispatchEvent(tacClosePanelEvent)}},focusTrap:function(parentElement){"use strict";var focusableEls,firstFocusableEl,lastFocusableEl,filtered;focusableEls=document.getElementById(parentElement).querySelectorAll("a[href], button");filtered=[];for(var i=0,max=focusableEls.length;i0){filtered.push(focusableEls[i])}}firstFocusableEl=filtered[0];lastFocusableEl=filtered[filtered.length-1];document.getElementById(parentElement).addEventListener("keydown",function(evt){if(evt.key==="Tab"||evt.keyCode===9){if(evt.shiftKey){if(document.activeElement===firstFocusableEl){lastFocusableEl.focus();evt.preventDefault()}}else{if(document.activeElement===lastFocusableEl){firstFocusableEl.focus();evt.preventDefault()}}}})},openAlert:function(){"use strict";var c="tarteaucitron";tarteaucitron.userInterface.css(c+"Percentage","display","block");tarteaucitron.userInterface.css(c+"AlertSmall","display","none");tarteaucitron.userInterface.css(c+"Icon","display","none");tarteaucitron.userInterface.css(c+"AlertBig","display","block");tarteaucitron.userInterface.addClass(c+"Root","tarteaucitronBeforeVisible");tarteaucitron.userInterface.css("tac_title","display","block");var tacOpenAlertEvent;if(typeof Event==="function"){tacOpenAlertEvent=new Event("tac.open_alert")}else if(typeof document.createEvent==="function"){tacOpenAlertEvent=document.createEvent("Event");tacOpenAlertEvent.initEvent("tac.open_alert",true,true)}if(document.getElementById("tarteaucitronAlertBig")!==null&&tarteaucitron.parameters.orientation==="middle"){document.getElementById("tarteaucitronAlertBig").focus()}if(typeof window.dispatchEvent==="function"){window.dispatchEvent(tacOpenAlertEvent)}},closeAlert:function(){"use strict";var c="tarteaucitron";tarteaucitron.userInterface.css(c+"Percentage","display","none");tarteaucitron.userInterface.css(c+"AlertSmall","display","block");tarteaucitron.userInterface.css(c+"Icon","display","block");tarteaucitron.userInterface.css(c+"AlertBig","display","none");tarteaucitron.userInterface.removeClass(c+"Root","tarteaucitronBeforeVisible");tarteaucitron.userInterface.jsSizing("box");var tacCloseAlertEvent;if(typeof Event==="function"){tacCloseAlertEvent=new Event("tac.close_alert")}else if(typeof document.createEvent==="function"){tacCloseAlertEvent=document.createEvent("Event");tacCloseAlertEvent.initEvent("tac.close_alert",true,true)}if(tarteaucitron.parameters.showAlertSmall===false&&tarteaucitron.parameters.showIcon===false){tarteaucitron.userInterface.css("tac_title","display","none")}if(typeof window.dispatchEvent==="function"){window.dispatchEvent(tacCloseAlertEvent)}},toggleCookiesList:function(){"use strict";var div=document.getElementById("tarteaucitronCookiesListContainer"),togglediv=document.getElementById("tarteaucitronCookiesNumber");if(div===null){return}if(div.style.display!=="block"){tarteaucitron.cookie.number();div.style.display="block";togglediv.setAttribute("aria-expanded","true");tarteaucitron.userInterface.jsSizing("cookie");tarteaucitron.userInterface.css("tarteaucitron","display","none");tarteaucitron.userInterface.css("tarteaucitronBack","display","block");tarteaucitron.fallback(["tarteaucitronInfoBox"],function(elem){elem.style.display="none"},true)}else{div.style.display="none";togglediv.setAttribute("aria-expanded","false");tarteaucitron.userInterface.css("tarteaucitron","display","none");tarteaucitron.userInterface.css("tarteaucitronBack","display","none")}},toggle:function(id,closeClass){"use strict";var div=document.getElementById(id);if(div===null){return}if(closeClass!==undefined){tarteaucitron.fallback([closeClass],function(elem){if(elem.id!==id){elem.style.display="none"}},true)}if(div.style.display!=="block"){div.style.display="block"}else{div.style.display="none"}},order:function(id){"use strict";var main=document.getElementById("tarteaucitronServices_"+id),allDivs,store=[],i;if(main===null){return}allDivs=main.childNodes;if(typeof Array.prototype.map==="function"&&typeof Enumerable==="undefined"){Array.prototype.map.call(main.children,Object).sort(function(a,b){if(tarteaucitron.services[a.id.replace(/Line/g,"")].name>tarteaucitron.services[b.id.replace(/Line/g,"")].name){return 1}if(tarteaucitron.services[a.id.replace(/Line/g,"")].name=0&&nb===0){html+=tarteaucitron.lang.useNoCookie}else if(nb>0){for(i=0;i0){html+=tarteaucitron.lang.useCookieCurrent+" "+nbCurrent+" "+cookieLabel;if(nbCurrent>1){html+="s"}html+="."}else{html+=tarteaucitron.lang.useNoCookie}}else if(nb===0){html=tarteaucitron.lang.noCookie}else{html+=tarteaucitron.lang.useCookie+" "+nb+" "+cookieLabel;if(nb>1){html+="s"}html+="."}if(document.getElementById("tacCL"+key)!==null){document.getElementById("tacCL"+key).innerHTML=html}},crossIndexOf:function(arr,match){"use strict";var i;for(i=0;i1?"s":"",savedname,regex=/^https?\:\/\/([^\/?#]+)(?:[\/?#]|$)/i,regexedDomain=tarteaucitron.cdn.match(regex)!==null?tarteaucitron.cdn.match(regex)[1]:tarteaucitron.cdn,host=tarteaucitron.domain!==undefined?tarteaucitron.domain:regexedDomain;cookies=cookies.sort(function(a,b){namea=a.split("=",1).toString().replace(/ /g,"");nameb=b.split("=",1).toString().replace(/ /g,"");c=tarteaucitron.cookie.owner[namea]!==undefined?tarteaucitron.cookie.owner[namea]:"0";d=tarteaucitron.cookie.owner[nameb]!==undefined?tarteaucitron.cookie.owner[nameb]:"0";if(c+a>d+b){return 1}if(c+a';html+=' ';html+=" "+host;html+=" ";html+='"}else{html+='
          ';html+='
          -
          ';html+='
          ';html+="
          "}html+='
          ';if(document.getElementById("tarteaucitronCookiesList")!==null){document.getElementById("tarteaucitronCookiesList").innerHTML=html}if(document.getElementById("tarteaucitronCookiesNumber")!==null){document.getElementById("tarteaucitronCookiesNumber").innerHTML=nb;document.getElementById("tarteaucitronCookiesNumber").setAttribute("aria-label",nb+" cookie"+s+" - "+tarteaucitron.lang.toggleInfoBox);document.getElementById("tarteaucitronCookiesNumber").setAttribute("title",nb+" cookie"+s+" - "+tarteaucitron.lang.toggleInfoBox)}if(document.getElementById("tarteaucitronCookiesNumberBis")!==null){document.getElementById("tarteaucitronCookiesNumberBis").innerHTML=nb+" cookie"+s}var purgeBtns=document.getElementsByClassName("purgeBtn");for(i=0;i/g,">").replace(/"/g,""").replace(/'/g,"'")},getLanguage:function(){"use strict";var availableLanguages="ar,bg,ca,cn,cs,da,de,et,el,en,es,fi,fr,hr,hu,it,ja,ko,lb,lt,lv,nl,no,oc,pl,pt,ro,ru,se,sk,sq,sv,tr,uk,vi,zh",defaultLanguage="en";if(tarteaucitronForceLanguage!==""){if(availableLanguages.indexOf(tarteaucitronForceLanguage)!==-1){return tarteaucitronForceLanguage}}if(document.documentElement.getAttribute("lang")!==undefined&&document.documentElement.getAttribute("lang")!==null&&document.documentElement.getAttribute("lang")!==""){if(availableLanguages.indexOf(document.documentElement.getAttribute("lang").substr(0,2))!==-1){return document.documentElement.getAttribute("lang").substr(0,2)}}if(!navigator){return defaultLanguage}var lang=navigator.language||navigator.browserLanguage||navigator.systemLanguage||navigator.userLang||null,userLanguage=lang?lang.substr(0,2):null;if(availableLanguages.indexOf(userLanguage)!==-1){return userLanguage}return defaultLanguage},getLocale:function(){"use strict";if(!navigator){return"en_US"}var lang=navigator.language||navigator.browserLanguage||navigator.systemLanguage||navigator.userLang||null,userLanguage=lang?lang.substr(0,2):null;if(userLanguage==="fr"){return"fr_FR"}else if(userLanguage==="en"){return"en_US"}else if(userLanguage==="de"){return"de_DE"}else if(userLanguage==="es"){return"es_ES"}else if(userLanguage==="it"){return"it_IT"}else if(userLanguage==="pt"){return"pt_PT"}else if(userLanguage==="nl"){return"nl_NL"}else if(userLanguage==="el"){return"el_EL"}else{return"en_US"}},addScript:function(url,id,callback,execute,attrName,attrVal,internal){"use strict";var script,done=false;if(execute===false){if(typeof callback==="function"){callback()}}else{script=document.createElement("script");if(id!==undefined&&id!==""){script.id=id}script.async=true;script.src=url;if(attrName!==undefined&&attrVal!==undefined){script.setAttribute(attrName,attrVal)}if(typeof callback==="function"){if(!tarteaucitron.parameters.useExternalJs||!internal){script.onreadystatechange=script.onload=function(){var state=script.readyState;if(!done&&(!state||/loaded|complete/.test(state))){done=true;callback()}}}else{callback()}}if(!tarteaucitron.parameters.useExternalJs||!internal){document.getElementsByTagName("head")[0].appendChild(script)}}},addInternalScript:function(url,id,callback,execute,attrName,attrVal){tarteaucitron.addScript(url,id,callback,execute,attrName,attrVal,true)},checkIfExist:function(elemId){"use strict";return document.getElementById(elemId)!==null&&document.getElementById(elemId).offsetWidth!==0&&document.getElementById(elemId).offsetHeight!==0},makeAsync:{antiGhost:0,buffer:"",init:function(url,id){"use strict";var savedWrite=document.write,savedWriteln=document.writeln;document.write=function(content){tarteaucitron.makeAsync.buffer+=content};document.writeln=function(content){tarteaucitron.makeAsync.buffer+=content.concat("\n")};setTimeout(function(){document.write=savedWrite;document.writeln=savedWriteln},2e4);tarteaucitron.makeAsync.getAndParse(url,id)},getAndParse:function(url,id){"use strict";if(tarteaucitron.makeAsync.antiGhost>9){tarteaucitron.makeAsync.antiGhost=0;return}tarteaucitron.makeAsync.antiGhost+=1;tarteaucitron.addInternalScript(url,"",function(){if(document.getElementById(id)!==null){document.getElementById(id).innerHTML+=" "+tarteaucitron.makeAsync.buffer;tarteaucitron.makeAsync.buffer="";tarteaucitron.makeAsync.execJS(id)}})},execJS:function(id){var i,scripts,childId,type;if(document.getElementById(id)===null){return}scripts=document.getElementById(id).getElementsByTagName("script");for(i=0;i';tarteaucitron.makeAsync.getAndParse(scripts[i].getAttribute("src"),childId)}else if(type.indexOf("javascript")!==-1||type===""){eval(scripts[i].innerHTML)}}}},fallback:function(matchClass,content,noInner){"use strict";var selector=matchClass.map(function(cls){return"."+cls}).join(", ");var elems=document.querySelectorAll(selector);for(var i=0;i';html+='
          ';html+=" "+engage;html+=' ";html+="
          ";html+="";return html},extend:function(a,b){"use strict";var prop;for(prop in b){if(b.hasOwnProperty(prop)){a[prop]=b[prop]}}},proTemp:"",proTimer:function(){"use strict";setTimeout(tarteaucitron.proPing,Math.floor(Math.random()*(1200-500+1))+500)},pro:function(list){"use strict";tarteaucitron.proTemp+=list;clearTimeout(tarteaucitron.proTimer);tarteaucitron.proTimer=setTimeout(tarteaucitron.proPing,Math.floor(Math.random()*(1200-500+1))+500)},proPing:function(){"use strict";if(tarteaucitron.uuid!==""&&tarteaucitron.uuid!==undefined&&tarteaucitron.proTemp!==""&&tarteaucitronStatsEnabled){var div=document.getElementById("tarteaucitronPremium"),timestamp=(new Date).getTime(),url="https://tarteaucitron.io/log/?";if(div===null){return}url+="account="+tarteaucitron.uuid+"&";url+="domain="+tarteaucitron.domain+"&";url+="status="+encodeURIComponent(tarteaucitron.proTemp)+"&";url+="_time="+timestamp;div.innerHTML='';tarteaucitron.proTemp=""}tarteaucitron.cookie.number()},AddOrUpdate:function(source,custom){for(var key in custom){if(key==="__proto__"||key==="constructor")continue;if(custom.hasOwnProperty(key)){if(custom[key]instanceof Object){source[key]=tarteaucitron.AddOrUpdate(source[key],custom[key])}else{source[key]=custom[key]}}}return source},getElemWidth:function(elem){return tarteaucitron.getElemAttr(elem,"width")||elem.clientWidth},getElemHeight:function(elem){return tarteaucitron.getElemAttr(elem,"height")||elem.clientHeight},getElemAttr:function(elem,attr){var attribute=elem.getAttribute("data-"+attr)||elem.getAttribute(attr)||elem.getAttribute(attr.startsWith("data-")?attr.slice(5):attr);if((attr==="url"||attr==="data-url"||attr==="data-src")&&!/^https?:\/\/[^\s]+$/.test(elem.getAttribute(attr))){return""}if(attr==="srcdoc"||attr==="data-srcdoc"){attribute=elem.getAttribute("srcdoc")}if(typeof attribute==="string"){return tarteaucitron.fixSelfXSS(attribute)}return""},getStyleSize:function(value){if(value==null){return"auto"}value=String(value).trim();var units=["px","%","em","rem","vh","vw","vmin","vmax","ch","ex","pt","pc","cm","mm","in","q"];var pattern=new RegExp("^\\d+(\\.\\d+)?("+units.join("|")+")$");if(pattern.test(value)){return value}if(/^\d+(\.\d+)?$/.test(value)){return value+"px"}return"auto"},addClickEventToId:function(elemId,func){tarteaucitron.addClickEventToElement(document.getElementById(elemId),func)},addClickEventToElement:function(e,func){if(e){if(e.addEventListener){e.addEventListener("click",func)}else{e.attachEvent("onclick",func)}}},triggerJobsAfterAjaxCall:function(){tarteaucitron.job.forEach(function(e){tarteaucitron.job.push(e)});var i;var allowBtns=document.getElementsByClassName("tarteaucitronAllow");for(i=0;i'; @@ -2850,7 +2903,7 @@ tarteaucitron.services.deezer = { allowfullscreen = tarteaucitron.getElemAttr(x, "allowfullscreen"), params; - if (deezer_id === undefined) { + if (deezer_id === "") { return ""; } if (deezer_width !== "") { @@ -2859,16 +2912,16 @@ tarteaucitron.services.deezer = { if (deezer_height !== "") { styleAttr += 'height:' + tarteaucitron.getStyleSize(deezer_height) + ';'; } - if (embed_theme === undefined || !['auto', 'light', 'dark'].includes(embed_theme)) { + if (embed_theme === "" || !['auto', 'light', 'dark'].includes(embed_theme)) { embed_theme = "auto"; } - if (embed_type === undefined || !['album', 'track', 'playlist'].includes(embed_type)) { + if (embed_type === "" || !['album', 'track', 'playlist'].includes(embed_type)) { embed_type = "album"; } - if (radius === undefined || !['true', 'false'].includes(radius)) { + if (radius === "" || !['true', 'false'].includes(radius)) { radius = "true"; } - if (tracklist === undefined || !['true', 'false'].includes(tracklist)) { + if (tracklist === "" || !['true', 'false'].includes(tracklist)) { tracklist = "true"; } params = 'tracklist=' + tracklist + '&radius=' + radius; @@ -3664,7 +3717,7 @@ tarteaucitron.services.genially = { var styleAttr = (width !== "" ? "width:" + tarteaucitron.getStyleSize(width) + ";" : "") + (height !== "" ? "height:" + tarteaucitron.getStyleSize(height) + ";" : ""); - return '
          '; + return ''; }); }, "fallback": function () { @@ -3881,6 +3934,13 @@ tarteaucitron.services.googletagmanager = { event: 'gtm.js' }); tarteaucitron.addScript('https://www.googletagmanager.com/gtm.js?id=' + tarteaucitron.user.googletagmanagerId); + }, + "fallback": function () { + if (tarteaucitron.parameters.googleConsentMode === true) { + if (tarteaucitron.parameters.softConsentMode === false) { + this.js(); + } + } } }; @@ -3907,6 +3967,13 @@ tarteaucitron.services.multiplegoogletagmanager = { tarteaucitron.addScript('https://www.googletagmanager.com/gtm.js?id=' + id); }); + }, + "fallback": function () { + if (tarteaucitron.parameters.googleConsentMode === true) { + if (tarteaucitron.parameters.softConsentMode === false) { + this.js(); + } + } } }; @@ -3957,7 +4024,12 @@ tarteaucitron.services.hubspot = { return; } - tarteaucitron.addScript('//js.hs-scripts.com/' + tarteaucitron.user.hubspotId + '.js', 'hs-script-loader'); + var tac_businessUnitId = ""; + if (tarteaucitron.user.hubspotBusinessUnitId !== undefined && tarteaucitron.user.hubspotBusinessUnitId !== null && tarteaucitron.user.hubspotBusinessUnitId !== "") { + tac_businessUnitId = "?businessUnitId=" + tarteaucitron.user.hubspotBusinessUnitId; + } + + tarteaucitron.addScript('//js.hs-scripts.com/' + tarteaucitron.user.hubspotId + '.js' + tac_businessUnitId, 'hs-script-loader'); } }; @@ -3974,6 +4046,7 @@ tarteaucitron.services.instagram = { tarteaucitron.fallback(['instagram_post'], function (x) { var frame_title = tarteaucitron.getElemAttr(x, "title") || 'Instagram iframe', post_id = tarteaucitron.getElemAttr(x, 'postId'), + page_id = tarteaucitron.getElemAttr(x, 'pageId'), post_permalink = tarteaucitron.getElemAttr(x, 'data-instgrm-permalink'), embed_width = tarteaucitron.getElemAttr(x, 'width'), embed_height = tarteaucitron.getElemAttr(x, 'height'), @@ -3986,7 +4059,8 @@ tarteaucitron.services.instagram = { return ''; } - if (post_id === undefined) { + var post_link = post_id !== "" ? 'p/' + post_id : (page_id !== "" ? page_id : ""); + if (post_link === "") { return ""; } @@ -3997,7 +4071,7 @@ tarteaucitron.services.instagram = { styleAttr = 'height:' + tarteaucitron.getStyleSize(embed_height) + ';'; } - post_frame = ''; + post_frame = ''; return post_frame; }); @@ -4585,7 +4659,7 @@ tarteaucitron.services.soundcloud = { var allowAutoplay = autoplay === 'true' ? 'allow="autoplay"' : ''; - if (playable_id === undefined && playable_url === undefined) { + if (playable_id === "" && playable_url === "") { return ""; } @@ -4632,10 +4706,10 @@ tarteaucitron.services.spotify = { spotify_id = tarteaucitron.getElemAttr(x, "spotifyID"), spotify_width = tarteaucitron.getElemAttr(x, "width"), spotify_height = tarteaucitron.getElemAttr(x, "height"), - styleAttr = "", + styleAttr = "border-radius:12px;", spotify_frame; - if (spotify_id === undefined) { + if (spotify_id === "") { return ""; } if (spotify_width !== "") { @@ -4954,14 +5028,14 @@ tarteaucitron.services.vimeo = { video_qs = "", attrs = ["title", "byline", "portrait", "loop", "autoplay", "autopause", "background", "color", "controls", "maxheight", "maxwidth", "muted", "playsinline", "speed", "transparent"], params = attrs.filter(function (a) { - return tarteaucitron.getElemAttr(x, a) !== null; + return tarteaucitron.getElemAttr(x, a) !== ""; }).map(function (a) { return a + "=" + tarteaucitron.getElemAttr(x, a); }), video_frame; - if (video_id === undefined) { + if (video_id === "") { return ""; } @@ -5236,7 +5310,7 @@ tarteaucitron.services.youtube = { "name": "YouTube", "uri": "https://policies.google.com/privacy", "needConsent": true, - "cookies": ['VISITOR_INFO1_LIVE', 'YSC', 'PREF', 'GEUP'], + "cookies": ['VISITOR_INFO1_LIVE', 'YSC', 'PREF'], "js": function () { "use strict"; tarteaucitron.fallback(['youtube_player'], function (x) { @@ -5253,7 +5327,7 @@ tarteaucitron.services.youtube = { end = tarteaucitron.getElemAttr(x, "end"), attrs = ["theme", "rel", "controls", "showinfo", "autoplay", "mute", "start", "end", "loop", "enablejsapi"], params = attrs.filter(function (a) { - return tarteaucitron.getElemAttr(x, a) !== null; + return tarteaucitron.getElemAttr(x, a) !== ""; }).map(function (a) { return a + "=" + tarteaucitron.getElemAttr(x, a); }).join("&"); @@ -5262,7 +5336,7 @@ tarteaucitron.services.youtube = { params = params + "&playlist=" + video_id; } - if (video_id === undefined) { + if (video_id === "") { return ""; } if (video_width !== "") { @@ -5306,7 +5380,7 @@ tarteaucitron.services.youtubeplaylist = { "name": "YouTube (playlist)", "uri": "https://policies.google.com/privacy", "needConsent": true, - "cookies": ['VISITOR_INFO1_LIVE', 'YSC', 'PREF', 'GEUP'], + "cookies": ['VISITOR_INFO1_LIVE', 'YSC', 'PREF'], "js": function () { "use strict"; tarteaucitron.fallback(['youtube_playlist_player'], function (x) { @@ -5319,7 +5393,7 @@ tarteaucitron.services.youtubeplaylist = { allowfullscreen = tarteaucitron.getElemAttr(x, "allowfullscreen"), params = 'theme=' + tarteaucitron.getElemAttr(x, "theme") + '&rel=' + tarteaucitron.getElemAttr(x, "rel") + '&controls=' + tarteaucitron.getElemAttr(x, "controls") + '&showinfo=' + tarteaucitron.getElemAttr(x, "showinfo") + '&autoplay=' + tarteaucitron.getElemAttr(x, "autoplay") + '&mute=' + tarteaucitron.getElemAttr(x, "mute"); - if (playlist_id === undefined) { + if (playlist_id === "") { return ""; } if (video_width !== "") { @@ -5470,7 +5544,7 @@ tarteaucitron.services.issuu = { issuu_frame, issuu_embed; - if (issuu_id === undefined) { + if (issuu_id === "") { return ""; } if (issuu_width !== "") { @@ -5914,7 +5988,7 @@ tarteaucitron.services.matterport = { matterport_allowfullscreen = tarteaucitron.getElemAttr(x, 'allowfullscreen'), matterport_frame; - if (matterport_id === undefined) { + if (matterport_id === "") { return ""; } if (matterport_width !== "") { @@ -5923,7 +5997,7 @@ tarteaucitron.services.matterport = { if (matterport_height !== undefined) { styleAttr += 'height:' + tarteaucitron.getStyleSize(matterport_height) + ';'; } - if (matterport_parameters === undefined) { + if (matterport_parameters === "") { return ""; } @@ -6179,7 +6253,7 @@ tarteaucitron.services.ausha = { useshowid = tarteaucitron.getElemAttr(x, 'data-useshowid'), color = tarteaucitron.getElemAttr(x, 'data-color'); - if (podcast_id === undefined) { + if (podcast_id === "") { return ""; } @@ -6244,12 +6318,12 @@ tarteaucitron.services.bandcamp = { styleAttr = "", attrs = ["size", "bgcol", "linkcol", "artwork", "minimal", "tracklist", "package", "transparent"], params = attrs.filter(function (a) { - return tarteaucitron.getElemAttr(x, a) !== null; + return tarteaucitron.getElemAttr(x, a) !== ""; }).map(function (a) { if (a && a.length > 0) return a + "=" + tarteaucitron.getElemAttr(x, a); }).join("/"); - if (album_id === null) { + if (album_id === "") { return ""; } @@ -6697,14 +6771,16 @@ tarteaucitron.services.canalu = { tarteaucitron.fallback(['canalu_player'], function (x) { var frame_title = (tarteaucitron.getElemAttr(x,"title")) ? tarteaucitron.getElemAttr(x,"title") : 'Canal-u.tv iframe', video_title = tarteaucitron.getElemAttr(x, "videoTitle"), - frame_url = 'https://www.canal-u.tv/embed/' + video_title; + frame_url = 'https://www.canal-u.tv/embed/' + video_title, + width = tarteaucitron.getElemAttr(x, 'width'), + height = tarteaucitron.getElemAttr(x, 'height'); - return '
          ' + - '' + - '
          '; + ''; }); }, "fallback": function () { @@ -6867,7 +6943,7 @@ tarteaucitron.services.archive = { styleAttr = "", video_frame; - if (video_id === undefined) { + if (video_id === "") { return ""; } if (video_width !== "") { @@ -6906,7 +6982,7 @@ tarteaucitron.services.gallica = { src = tarteaucitron.getElemAttr(x, "data-src"), style = tarteaucitron.getElemAttr(x, "data-style"), frame; - if (src === undefined) { + if (src === "") { return ""; } frame = ''; @@ -7064,4 +7140,4 @@ tarteaucitron.services.klaviyo = { } tarteaucitron.addScript('//static.klaviyo.com/onsite/js/klaviyo.js?company_id=' + tarteaucitron.user.klaviyoCompanyId); } -}; \ No newline at end of file +}; diff --git a/static/tarteaucitron/tarteaucitron.services.min.js b/static/tarteaucitron/tarteaucitron.services.min.js index 0ef50f3..3144adf 100644 --- a/static/tarteaucitron/tarteaucitron.services.min.js +++ b/static/tarteaucitron/tarteaucitron.services.min.js @@ -1 +1 @@ -tarteaucitron.services.iframe={key:"iframe",type:"other",name:"Web content",uri:"",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_iframe"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen"),url=tarteaucitron.getElemAttr(x,"url");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="iframe";tarteaucitron.fallback(["tac_iframe"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.kompass={key:"kompass",type:"analytic",name:"Kompass",uri:"https://fr.kompass.com/l/cookie-use-policy",needConsent:true,cookies:["kompass","gq_lead","_first_pageview","eqy_sessionid","eqy_siteid","cluid","eqy_company","gq_utm","_jsuid"],js:function(){"use strict";if(tarteaucitron.user.kompassId===undefined){return}tarteaucitron.addScript("https://fr.kompass.com/leads/script.js?id="+tarteaucitron.user.kompassId)}};tarteaucitron.services.goldenbees={key:"goldenbees",type:"ads",name:"Golden Bees",uri:"https://www.goldenbees.fr/politique-confidentialite",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.goldenbeesId===undefined){return}tarteaucitron.addScript("https://cdn.goldenbees.fr/proxy?url=http%3A%2F%2Fstatic.goldenbees.fr%2Fcdn%2Fjs%2Fgtag%2Fgoldentag-min.js&attachment=0","",function(){window.gbTag=GbTagBuilder.build(tarteaucitron.user.goldenbeesId);window.gbTag.fire()})}};tarteaucitron.services.weply={key:"weply",type:"support",name:"Weply",uri:"https://weply.chat/",needConsent:true,cookies:["weply.analytics","logglytrackingsession"],js:function(){"use strict";if(tarteaucitron.user.weplyId===undefined){return}tarteaucitron.addScript("https://app.weply.chat/widget/"+tarteaucitron.user.weplyId)}};tarteaucitron.services.skaze={key:"skaze",type:"ads",name:"Skaze",uri:"https://www.skaze.com/fr/politique/politique-de-confidentialite/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.skazeIdentifier===undefined){return}window.skaze=window.skaze||{};tarteaucitron.addScript("https://events.sk.ht/"+tarteaucitron.user.skazeIdentifier+"/lib.js","",function(){skaze.cmd=skaze.cmd||[];skaze.cmd.push(function(){skaze.init({siteIdentifier:tarteaucitron.user.skazeIdentifier});if(typeof tarteaucitron.user.skazeMore==="function"){tarteaucitron.user.skazeMore()}})})}};tarteaucitron.services.dialoginsight={key:"dialoginsight",type:"support",name:"Dialog Insight",uri:"https://www.dialoginsight.com/politique-de-confidentialite/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.dialogInsightId===undefined){return}tarteaucitron.addScript("https://t.ofsys.com/js/Journey/1/"+tarteaucitron.user.dialogInsightId+"/DI.Journey-min.js")}};tarteaucitron.services.markerio={key:"markerio",type:"support",name:"Marker.io",uri:"https://marker.io/cookie-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.markerioProjectId===undefined){return}window.markerConfig={project:tarteaucitron.user.markerioProjectId,source:"snippet"};!function(e,r,a){if(!e.__Marker){e.__Marker={};var t=[],n={__cs:t};["show","hide","isVisible","capture","cancelCapture","unload","reload","isExtensionInstalled","setReporter","setCustomData","on","off"].forEach(function(e){n[e]=function(){var r=Array.prototype.slice.call(arguments);r.unshift(e),t.push(r)}}),e.Marker=n;var s=r.createElement("script");s.async=1,s.src="https://edge.marker.io/latest/shim.js";var i=r.getElementsByTagName("script")[0];i.parentNode.insertBefore(s,i)}}(window,document)}};tarteaucitron.services.tolkaigenii={key:"tolkaigenii",type:"support",name:"Tolk.ai Genii",uri:"https://www.tolk.ai/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.tolkaiGeniiProject===undefined){return}tarteaucitron.addScript("https://genii-script.tolk.ai/lightchat.js","lightchat-bot","","","project-id",tarteaucitron.user.tolkaiGeniiProject)}};tarteaucitron.services.seamlessaccess={key:"seamlessaccess",type:"api",name:"Seamlessaccess",uri:"https://seamlessaccess.org/about/trust/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.seamlessaccessInitiator===undefined){return}var uniqIds=[];tarteaucitron.fallback(["seamlessaccess_button"],function(x){var uniqId=tarteaucitron.getElemAttr(x,"id");if(uniqId===undefined){uniqId="_"+Math.random().toString(36).substr(2,9);x.setAttribute("id",uniqId)}uniqIds.push(uniqId);x.innerHTML=""},true);tarteaucitron.addScript("//service.seamlessaccess.org/thiss.js","seamlessaccessjs",function(){for(var i=0;i'})},fallback:function(){"use strict";var id="twitch";tarteaucitron.fallback(["twitch_player"],tarteaucitron.engage(id))}};tarteaucitron.services.eskimi={key:"eskimi",type:"ads",name:"Eskimi",uri:"https://fr.eskimi.com/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.eskimiInit===undefined){return}window.___esk=window.esk=function(){window.___esk.callMethod?window.___esk.callMethod.apply(window.___esk,arguments):window.___esk.queue.push(arguments)};window.___esk.push=window.___esk;window.___esk.loaded=true;window.___esk.queue=[];tarteaucitron.addScript("https://dsp-media.eskimi.com/assets/js/e/gtr.min.js","",function(){esk("init",tarteaucitron.user.eskimiInit)})}};tarteaucitron.services.sharethissticky={key:"sharethissticky",type:"social",name:"ShareThis Sticky",uri:"https://sharethis.com/fr/privacy/",needConsent:true,cookies:["_stid","_stidv","pubconsent"],js:function(){"use strict";if(tarteaucitron.user.sharethisStickyProperty===undefined){return}tarteaucitron.addScript("https://platform-api.sharethis.com/js/sharethis.js#property="+tarteaucitron.user.sharethisStickyProperty+"&product=sticky-share-buttons")}};tarteaucitron.services.pianoanalytics={key:"pianoanalytics",type:"analytic",name:"Piano Analytics",uri:"https://piano.io/privacy-policy/",needConsent:true,cookies:["_pcid","_pctx","_pctx","pa_user","pa_privacy"],js:function(){"use strict";if(tarteaucitron.user.pianoCollectDomain===undefined||tarteaucitron.user.pianoSite===undefined){return}tarteaucitron.addScript("https://tag.aticdn.net/piano-analytics.js","",function(){pa.setConfigurations({site:tarteaucitron.user.pianoSite,collectDomain:tarteaucitron.user.pianoCollectDomain});if(tarteaucitron.user.pianoSendData!==false){pa.sendEvent("page.display",{page:document.title})}})}};tarteaucitron.services.actistat={key:"actistat",type:"analytic",name:"ActiSTAT",uri:"https://actigraph.com/actistat",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.actistatId===undefined){return}tarteaucitron.addScript("https://actistat.fr/umami.js","","","","data-website-id",tarteaucitron.user.actistatId)}};tarteaucitron.services.outbrainamplify={key:"outbrainamplify",type:"ads",name:"Outbrain Amplify",uri:"https://www.outbrain.com/privacy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.outbrainamplifyId===undefined){return}var OB_ADV_ID=tarteaucitron.user.outbrainamplifyId;if(window.obApi){var toArray=function(object){return Object.prototype.toString.call(object)==="[object Array]"?object:[object]};window.obApi.marketerId=toArray(_window.obApi.marketerId).concat(toArray(OB_ADV_ID));return}var api=window.obApi=function(){api.dispatch?api.dispatch.apply(api,arguments):api.queue.push(arguments)};api.version="1.1";api.loaded=true;api.marketerId=OB_ADV_ID;api.queue=[];tarteaucitron.addScript("https://amplify.outbrain.com/cp/obtp.js","",function(){obApi("track","PAGE_VIEW")})}};tarteaucitron.services.playplay={key:"playplay",type:"video",name:"PlayPlay",uri:"https://playplay.com/fr/confidentialite",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_playplay"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Playplay iframe",id=tarteaucitron.getElemAttr(x,"data-id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var playURL="https://playplay.com/app/embed-video/"+id;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="playplay";tarteaucitron.fallback(["tac_playplay"],function(elem){return tarteaucitron.engage(id)})}};tarteaucitron.services.adobeworkspace={key:"adobeworkspace",type:"analytic",name:"Adobe - Analysis Workspace",uri:"https://www.adobe.com/privacy/policy.html",needConsent:true,cookies:["s_ecid","s_cc","s_sq","s_vi","s_fid"],js:function(){"use strict";if(tarteaucitron.user.adobeworkspaceId1===undefined||tarteaucitron.user.adobeworkspaceId2===undefined||tarteaucitron.user.adobeworkspaceId3===undefined){return}tarteaucitron.addScript("https://assets.adobedtm.com/"+tarteaucitron.user.adobeworkspaceId1+"/"+tarteaucitron.user.adobeworkspaceId2+"/launch-"+tarteaucitron.user.adobeworkspaceId3+".min.js")}};tarteaucitron.services.zohopagesense={key:"zohopagesense",type:"analytic",name:"Zoho PageSense",uri:"https://www.zoho.com/pagesense/cookie-policy.html",needConsent:true,cookies:["zab_g_","zabUserID","zabVisitID","zabSplit","zabBucket","zabHMBucket","zpsfa_","zfa","zsr","zabme","zsd","ps_payloadSeqId","zabPZBucket","zPersonalization","zia_","zpc","zps_permission_status","zps-tgr-dts","zpspolls_","zpsPollsBucket","zpspb","zpsPopupBucket","zpssr","zab_g_","zab_","zPersonalization"],js:function(){"use strict";if(tarteaucitron.user.zohoPageSenseProjectId===undefined||tarteaucitron.user.zohoPageSenseScriptHash===undefined){return}tarteaucitron.addScript("https://cdn-eu.pagesense.io/js/"+tarteaucitron.user.zohoPageSenseProjectId+"/"+tarteaucitron.user.zohoPageSenseScriptHash+".js")}};tarteaucitron.services.leadinfo={key:"leadinfo",type:"analytic",name:"Leadinfo",uri:"https://www.leadinfo.com/en/privacy/",needConsent:true,cookies:["_li_id","_li_ses"],js:function(){"use strict";if(tarteaucitron.user.leadinfoId===undefined){return}window.GlobalLeadinfoNamespace=window.GlobalLeadinfoNamespace||[];window.GlobalLeadinfoNamespace.push("leadinfo");window["leadinfo"]=function(){(window["leadinfo"].q=window["leadinfo"].q||[]).push(arguments)};window["leadinfo"].t=window["leadinfo"].t||tarteaucitron.user.leadinfoId;window["leadinfo"].q=window["leadinfo"].q||[];tarteaucitron.addScript("https://cdn.leadinfo.net/ping.js")}};tarteaucitron.services.force24={key:"force24",type:"analytic",name:"Force24",uri:"https://support.force24.co.uk/support/solutions/articles/79000128057-cookie-policies",needConsent:true,cookies:["F24_autoID","F24_personID"],js:function(){"use strict";if(tarteaucitron.user.force24trackingId===undefined||tarteaucitron.user.force24clientId===undefined){return}window.Force24Object="f24",window["f24"]=window["f24"]||function(){window["f24"].q=window["f24"].q||[],window["f24"].q.push(arguments)},window["f24"].l=1*new Date;tarteaucitron.addScript("https://static.websites.data-crypt.com/scripts/activity/v3/inject-v3.min.js");f24("config","set_tracking_id",tarteaucitron.user.force24trackingId);f24("config","set_client_id",tarteaucitron.user.force24clientId)}};tarteaucitron.services.tiktokvideo={key:"tiktokvideo",type:"video",name:"Tiktok Video",uri:"https://www.tiktok.com/legal/page/eea/privacy-policy/en",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://www.tiktok.com/embed.js")},fallback:function(){"use strict";var id="tiktokvideo";tarteaucitron.fallback(["tiktok-embed"],function(elem){return tarteaucitron.engage(id)})}};tarteaucitron.services.shinystat={key:"shinystat",type:"analytic",name:"Shinystat",uri:"https://www.shinystat.com/en/opt-out.html",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.shinystatUser===undefined){return}tarteaucitron.addScript("https://codice.shinystat.com/cgi-bin/getcod.cgi?USER="+tarteaucitron.user.shinystatUser)}};tarteaucitron.services.activecampaignvgo={key:"activecampaignvgo",type:"other",name:"Active Campaign",uri:"https://www.activecampaign.com/legal/privacy-policy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.activecampaignAccount===undefined){return}window.visitorGlobalObjectAlias="vgo";window[window.visitorGlobalObjectAlias]=window[window.visitorGlobalObjectAlias]||function(){(window[window.visitorGlobalObjectAlias].q=window[window.visitorGlobalObjectAlias].q||[]).push(arguments)};window[window.visitorGlobalObjectAlias].l=(new Date).getTime();tarteaucitron.addScript("https://diffuser-cdn.app-us1.com/diffuser/diffuser.js","",function(){vgo("setAccount",tarteaucitron.user.activecampaignAccount);vgo("setTrackByDefault",true);vgo("process")})}};tarteaucitron.services.sendinblue={key:"sendinblue",type:"other",name:"Brevo (formerly sendinblue)",uri:"https://www.brevo.com/fr/legal/cookies/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.sendinblueKey===undefined){return}window.sib={equeue:[],client_key:tarteaucitron.user.sendinblueKey};window.sendinblue={};for(var j=["track","identify","trackLink","page"],i=0;i>>=0);(function(e,a,s,y){s[a]=s[a]||function(){(s[y]=s[y]||[]).push(arguments);s[y].eah=e}})(e,a,s,y);i=new Date/1e7|0;o.ea=y;y=i%26;o.async=1;o.src="//"+e+"/"+String.fromCharCode(97+y,122-y,65+y)+i%1e3+".js?2";s=v.getElementsByTagName(k)[0];s.parentNode.insertBefore(o,s)})(tarteaucitron.user.eulerianHost,"EA_push");EA_push()}};tarteaucitron.services.posthog={key:"posthog",type:"other",name:"Posthog",uri:"https://posthog.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.posthogApiKey===undefined||tarteaucitron.user.posthogHost===undefined){return}!function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="capture identify alias people.set people.set_once set_config register register_once unregister opt_out_capturing has_opted_out_capturing opt_in_capturing reset isFeatureEnabled onFeatureFlags".split(" "),n=0;n'})},fallback:function(){"use strict";var id="kwanko";tarteaucitron.fallback(["tac_kwanko"],function(elem){return tarteaucitron.engage(id)})}};tarteaucitron.services.leadforensics={key:"leadforensics",type:"ads",name:"Lead Forensics",uri:"https://www.leadforensics.com/cookie-policy/",needConsent:true,cookies:["ifuuid"],js:function(){"use strict";if(tarteaucitron.user.leadforensicsId===undefined){return}tarteaucitron.addScript("https://secure.team8save.com/js/sc/"+tarteaucitron.user.leadforensicsId+".js")}};tarteaucitron.services.ubib={key:"ubib",type:"support",name:"Ubib Chatbot",uri:"https://ubib.libanswers.com/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.ubibId===undefined||tarteaucitron.user.ubibHash===undefined){return}tarteaucitron.addScript("https://"+tarteaucitron.user.ubibId+".libanswers.com/load_chat.php?hash="+tarteaucitron.user.ubibHash)}};tarteaucitron.services.wysistathightrack={key:"wysistathightrack",type:"analytic",name:"Wysistat (privacy by design)",uri:"https://www.wysistat.net/webanalytics/exemption-cnil/",needConsent:false,cookies:["wysistat"],js:function(){"use strict";if(tarteaucitron.user.wysistatNom===undefined){return}window._wsq=window._wsq||[];window._wsq.push(["_setNom",tarteaucitron.user.wysistatNom]);window._wsq.push(["_wysistat"]);tarteaucitron.addScript("https://www.wysistat.com/ws.jsa")}};tarteaucitron.services.robofabrica={key:"robofabrica",type:"support",name:"Robo Fabrica Chatbot",uri:"https://robofabrica.tech/charte-vie-privee/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.robofabricaUuid===undefined){return}tarteaucitron.addScript("https://app.robofabrica.tech/widget/script","inceptive-cw-script",function(){document.getElementById("inceptive-cw-script").setAttribute("unique-url",tarteaucitron.user.robofabricaUuid);document.getElementById("inceptive-cw-script").setAttribute("label","start");document.getElementById("inceptive-cw-script").setAttribute("launch-btn-id","inceptive-cw-launch");document.getElementById("inceptive-cw-script").setAttribute("chat-server-url","https://app.robofabrica.tech:443")})}};tarteaucitron.services.trustpilot={key:"trustpilot",type:"other",name:"Trustpilot",uri:"https://fr.legal.trustpilot.com/for-reviewers/end-user-privacy-terms",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["trustpilot-widget"],"");tarteaucitron.addScript("https://widget.trustpilot.com/bootstrap/v5/tp.widget.sync.bootstrap.min.js")},fallback:function(){"use strict";var id="trustpilot";tarteaucitron.fallback(["trustpilot-widget"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-style-width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-style-height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.snapchat={key:"snapchat",type:"analytic",name:"Snapchat",uri:"https://snap.com/fr-FR/privacy/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.snapchatId===undefined){return}var a=window.snaptr=function(){a.handleRequest?a.handleRequest.apply(a,arguments):a.queue.push(arguments)};a.queue=[];if(tarteaucitron.user.snapchatEmail===undefined){window.snaptr("init",tarteaucitron.user.snapchatId)}else{window.snaptr("init",tarteaucitron.user.snapchatId,{user_email:tarteaucitron.user.snapchatEmail})}window.snaptr("track","PAGE_VIEW");tarteaucitron.addScript("https://sc-static.net/scevent.min.js");if(typeof tarteaucitron.user.snapchatMore==="function"){tarteaucitron.user.snapchatMore()}}};tarteaucitron.services.antvoice={key:"antvoice",type:"ads",name:"antvoice",uri:"https://www.antvoice.com/fr/privacy-policy/",needConsent:true,cookies:["antvoice"],js:function(){"use strict";if(tarteaucitron.user.antvoiceId===undefined){return}window.avDataLayer=window.avDataLayer||[];window.avtag=window.avtag||function(_cmd,_p){window.avDataLayer.push({cmd:_cmd,p:_p})};window.avtag("setConsent",{consent:true});window.avtag("init",{id:tarteaucitron.user.antvoiceId});tarteaucitron.addScript("https://static.avads.net/avtag.min.js")}};tarteaucitron.services.plausible={key:"plausible",type:"analytic",name:"Plausible",uri:"https://plausible.io/privacy",needConsent:false,cookies:[],js:function(){"use strict";if(tarteaucitron.user.plausibleDomain===undefined){return}tarteaucitron.addScript("https://plausible.io/js/script.js","","","","data-domain",tarteaucitron.user.plausibleDomain)}};tarteaucitron.services.videas={key:"videas",type:"video",name:"Videas",uri:"https://videas.fr/fr/legal",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_videas"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Videas iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),id=tarteaucitron.getElemAttr(x,"data-id"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="videas";tarteaucitron.fallback(["tac_videas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.myfeelback={key:"myfeelback",type:"api",name:"MyFeelBack (Skeepers)",uri:"https://help.myfeelback.com/fr/quels-sont-les-cookies-d%C3%A9pos%C3%A9s-par-un-dispositif-de-collecte-myfeelback",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.myfeelbackId===undefined){return}window._Mfb_useCookie=true;window._Mfb_ud={var1:undefined,var2:undefined,varN:undefined,_context:{lang:undefined,privacyMode:false,_page:{url:location.pathname,storageDuration:30}}};tarteaucitron.addScript("https://actorssl-5637.kxcdn.com/actor/"+tarteaucitron.user.myfeelbackId+"/action","MFBActor")}};tarteaucitron.services.arcio={key:"arcio",type:"api",name:"Arc.io",uri:"https://arc.io/about",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.arcId===undefined){return}tarteaucitron.addScript("https://arc.io/widget.min.js#"+tarteaucitron.user.arcId)}};tarteaucitron.services.doubleclick={key:"doubleclick",type:"ads",name:"DoubleClick",uri:"https://support.google.com/admanager/answer/2839090",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["doubleclick_container"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Doubleclick iframe",id1=tarteaucitron.getElemAttr(x,"data-id1"),id2=tarteaucitron.getElemAttr(x,"data-id2"),type=tarteaucitron.getElemAttr(x,"data-type"),cat=tarteaucitron.getElemAttr(x,"data-cat"),item=tarteaucitron.getElemAttr(x,"data-item"),quantity=tarteaucitron.getElemAttr(x,"data-quantity"),price=tarteaucitron.getElemAttr(x,"data-price"),postage=tarteaucitron.getElemAttr(x,"data-postage"),seller=tarteaucitron.getElemAttr(x,"data-seller"),gdpr=tarteaucitron.getElemAttr(x,"data-gdpr"),gdpr_consent=tarteaucitron.getElemAttr(x,"data-gdpr-consent"),ord=tarteaucitron.getElemAttr(x,"data-ord"),num=tarteaucitron.getElemAttr(x,"data-num");return''})}};tarteaucitron.services.userpilot={key:"userpilot",type:"analytic",name:"UserPilot",uri:"https://userpilot.com/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.userpilotToken===undefined){return}window.userpilotSettings={token:tarteaucitron.user.userpilotToken};tarteaucitron.addScript("https://js.userpilot.io/sdk/latest.js")}};tarteaucitron.services.piwikpro={key:"piwikpro",type:"analytic",name:"Piwik Pro",uri:"https://piwik.pro/privacy-policy/",needConsent:true,cookies:["_pk_ref","_pk_cvar","_pk_id","_pk_ses","_pk_hsr","piwik_ignore","_pk_uid"],js:function(){"use strict";if(tarteaucitron.user.piwikProId===undefined||tarteaucitron.user.piwikProContainer===undefined){return}window["dataLayer"]=window["dataLayer"]||[],window["dataLayer"].push({start:(new Date).getTime(),event:"stg.start"});function stgCreateCookie(a,b,c){var d="";if(c){var e=new Date;e.setTime(e.getTime()+24*c*60*60*1e3),d="; expires="+e.toUTCString()}document.cookie=a+"="+b+d+"; path=/"}var isStgDebug=(window.location.href.match("stg_debug")||document.cookie.match("stg_debug"))&&!window.location.href.match("stg_disable_debug");stgCreateCookie("stg_debug",isStgDebug?1:"",isStgDebug?14:-1);var qP=[];var qPString=qP.length>0?"?"+qP.join("&"):"";tarteaucitron.addScript("https://"+tarteaucitron.user.piwikProContainer+".containers.piwik.pro/"+tarteaucitron.user.piwikProId+".js"+qPString);!function(a,n,i){a[n]=a[n]||{};for(var c=0;c'});for(i=0;i"}},fallback:function(){"use strict";var id="xandrsegment";tarteaucitron.fallback(["xandrsegment-canvas"],tarteaucitron.engage(id))}};tarteaucitron.services.xandrconversion={key:"xandrconversion",type:"ads",name:"Xandr (Conversion)",uri:"https://www.xandr.com/privacy/cookie-policy/",needConsent:true,cookies:["uuid2","uids","sess","icu","anj","usersync"],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["xandrconversion-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i"}},fallback:function(){"use strict";var id="xandrconversion";tarteaucitron.fallback(["xandrconversion-canvas"],tarteaucitron.engage(id))}};tarteaucitron.services.helloasso={key:"helloasso",type:"api",name:"HelloAsso",uri:"https://www.helloasso.com/confidentialite",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_helloasso"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"HelloAsso iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url=tarteaucitron.getElemAttr(x,"data-url"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="helloasso";tarteaucitron.fallback(["tac_helloasso"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.podcloud={key:"podcloud",type:"video",name:"podCloud",uri:"https://podcloud.fr/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_podcloud"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"podCloud iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url=tarteaucitron.getElemAttr(x,"data-url"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="podcloud";tarteaucitron.fallback(["tac_podcloud"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.facebookpost={key:"facebookpost",type:"social",name:"Facebook (post)",uri:"https://www.facebook.com/policy.php",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_facebookpost"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Facebook iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url=tarteaucitron.getElemAttr(x,"data-url"),appId=tarteaucitron.getElemAttr(x,"data-appid"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen"),showText=tarteaucitron.getElemAttr(x,"data-show-text");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="facebookpost";tarteaucitron.fallback(["tac_facebookpost"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.amplitude={key:"amplitude",type:"analytic",name:"Amplitude",uri:"https://amplitude.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.amplitude===undefined){return}tarteaucitron.addScript("https://cdn.amplitude.com/libs/amplitude-5.8.0-min.gz.js","",function(){window.amplitude={_q:[],_iq:{}};function s(e,t){e.prototype[t]=function(){this._q.push([t].concat(Array.prototype.slice.call(arguments,0)));return this}}var o=function(){this._q=[];return this};var a=["add","append","clearAll","prepend","set","setOnce","unset"];for(var u=0;u';return iframe})},fallback:function(){"use strict";var id="amazon";tarteaucitron.fallback(["amazon_product"],tarteaucitron.engage(id))}};tarteaucitron.services.calameo={key:"calameo",type:"video",name:"Calameo",uri:"https://fr.calameo.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["calameo-canvas"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Calameo iframe",id=tarteaucitron.getElemAttr(x,"data-id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url="//v.calameo.com/?bkcode="+id,allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="calameo";tarteaucitron.fallback(["calameo-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.calameolibrary={key:"calameolibrary",type:"video",name:"Calameo Library",uri:"https://fr.calameo.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["calameolibrary-canvas"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Calameo iframe",id=tarteaucitron.getElemAttr(x,"data-id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url="//v.calameo.com/library/?type=subscription&id="+id,allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="calameolibrary";tarteaucitron.fallback(["calameolibrary-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.clicky={key:"clicky",type:"analytic",name:"Clicky",uri:"https://clicky.com/terms",needConsent:true,cookies:["_jsuid","_eventqueue","_referrer_og","_utm_og","_first_pageview","clicky_olark","no_trackyy_"+tarteaucitron.user.clickyId,"unpoco_"+tarteaucitron.user.clickyId,"heatmaps_g2g_"+tarteaucitron.user.clickyId],js:function(){"use strict";if(tarteaucitron.user.clickyId===undefined){return}tarteaucitron.addScript("//static.getclicky.com/js","",function(){if(typeof clicky.init==="function"){clicky.init(tarteaucitron.user.clickyId)}if(typeof tarteaucitron.user.clickyMore==="function"){tarteaucitron.user.clickyMore()}})}};tarteaucitron.services.clicmanager={key:"clicmanager",type:"ads",name:"Clicmanager",uri:"https://www.clicmanager.fr/infos_legales.php",needConsent:true,cookies:[],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["clicmanager-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i'});for(i=0;i";return video_frame})},fallback:function(){"use strict";var id="artetv";tarteaucitron.fallback(["artetv_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.dailymotion={key:"dailymotion",type:"video",name:"Dailymotion",uri:"https://www.dailymotion.com/legal/privacy",needConsent:true,cookies:["ts","dmvk","hist","v1st","s_vi"],js:function(){"use strict";tarteaucitron.fallback(["dailymotion_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Dailymotion iframe",video_id=tarteaucitron.getElemAttr(x,"videoID"),video_width=tarteaucitron.getElemAttr(x,"width"),video_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",video_frame,embed_type=tarteaucitron.getElemAttr(x,"embedType"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen"),showinfo=tarteaucitron.getElemAttr(x,"showinfo"),autoplay=tarteaucitron.getElemAttr(x,"autoplay"),api=tarteaucitron.getElemAttr(x,"api"),params="info="+showinfo+"&autoPlay="+autoplay+"&api="+api;if(video_id===undefined){return""}if(video_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(video_width)+";"}if(video_height!==undefined){styleAttr+="height:"+tarteaucitron.getStyleSize(video_height)+";"}if(embed_type===undefined||!["video","playlist"].includes(embed_type)){embed_type="video"}video_frame='";return video_frame})},fallback:function(){"use strict";var id="dailymotion";tarteaucitron.fallback(["dailymotion_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.datingaffiliation={key:"datingaffiliation",type:"ads",name:"Dating Affiliation",uri:"https://www.dating-affiliation.com/conditions-generales.php",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["datingaffiliation-canvas"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Dating Affiliation iframe",comfrom=tarteaucitron.getElemAttr(x,"data-comfrom"),r=tarteaucitron.getElemAttr(x,"data-r"),p=tarteaucitron.getElemAttr(x,"data-p"),cf0=tarteaucitron.getElemAttr(x,"data-cf0"),langue=tarteaucitron.getElemAttr(x,"data-langue"),forward_affiliate=tarteaucitron.getElemAttr(x,"data-forwardAffiliate"),cf2=tarteaucitron.getElemAttr(x,"data-cf2"),cfsa2=tarteaucitron.getElemAttr(x,"data-cfsa2"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url="https://www.tools-affil2.com/rotaban/ban.php?"+comfrom;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="datingaffiliation";tarteaucitron.fallback(["datingaffiliation-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.datingaffiliationpopup={key:"datingaffiliationpopup",type:"ads",name:"Dating Affiliation (Pop Up)",uri:"https://www.dating-affiliation.com/conditions-generales.php",needConsent:true,cookies:["__utma","__utmb","__utmc","__utmt_Tools","__utmv","__utmz","_ga","_gat","_gat_UA-65072040-17","__da-pu-xflirt-ID-pc-o169"],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["datingaffiliationpopup-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i";return deezer_frame})},fallback:function(){"use strict";var id="deezer";tarteaucitron.fallback(["deezer_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.leadforensicsold={key:"leadforensicsold",type:"analytic",name:"LeadForensics",uri:"https://www.leadforensics.com/privacy-policy/",needConsent:true,cookies:["trackalyzer"],js:function(){"use strict";if(tarteaucitron.user.leadforensicsSf14gv===undefined||tarteaucitron.user.leadforensicsIidentifier===undefined){return}window.sf14gv=tarteaucitron.user.leadforensicsSf14gv;(function(){var sf14g=document.createElement("script");sf14g.async=true;sf14g.src=("https:"==document.location.protocol?"https://":"http://")+"t.sf14g.com/sf14g.js";var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(sf14g,s)})();tarteaucitron.addScript("//secure.leadforensics.com/js/"+tarteaucitron.user.leadforensicsIidentifier+".js")}};tarteaucitron.services.disqus={key:"disqus",type:"comment",name:"Disqus",uri:"https://help.disqus.com/customer/portal/articles/466259-privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.disqusShortname===undefined){return}tarteaucitron.addScript("//"+tarteaucitron.user.disqusShortname+".disqus.com/embed.js");tarteaucitron.addScript("//"+tarteaucitron.user.disqusShortname+".disqus.com/count.js")},fallback:function(){"use strict";var id="disqus";if(document.getElementById("disqus_thread")){document.getElementById("disqus_thread").innerHTML=tarteaucitron.engage(id)}}};tarteaucitron.services.ekomi={key:"ekomi",type:"social",name:"eKomi",uri:"https://www.ekomi-us.com/us/privacy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.ekomiCertId===undefined){return}window.eKomiIntegrationConfig=[{certId:tarteaucitron.user.ekomiCertId}];tarteaucitron.addScript("//connect.ekomi.de/integration_1410173009/"+tarteaucitron.user.ekomiCertId+".js")}};tarteaucitron.services.etracker={key:"etracker",type:"analytic",name:"eTracker",uri:"https://www.etracker.com/en/data-protection.html",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.etracker===undefined){return}tarteaucitron.addScript("//static.etracker.com/code/e.js","_etLoader",function(){},true,"data-secure-code",tarteaucitron.user.etracker)}};tarteaucitron.services.facebook={key:"facebook",type:"social",name:"Facebook",uri:"https://www.facebook.com/policy.php",needConsent:true,cookies:["xs","sb","fr","datr","dpr","c_user"],js:function(){"use strict";tarteaucitron.fallback(["fb-post","fb-follow","fb-activity","fb-send","fb-share-button","fb-like","fb-video"],"");tarteaucitron.addScript("//connect.facebook.net/"+tarteaucitron.getLocale()+"/sdk.js#xfbml=1&version=v2.0","facebook-jssdk");if(tarteaucitron.isAjax===true){if(typeof FB!=="undefined"){FB.XFBML.parse()}}},fallback:function(){"use strict";var id="facebook";tarteaucitron.fallback(["fb-post","fb-follow","fb-activity","fb-send","fb-share-button","fb-like","fb-video"],tarteaucitron.engage(id))}};tarteaucitron.services.facebooklikebox={key:"facebooklikebox",type:"social",name:"Facebook (like box)",uri:"https://www.facebook.com/policy.php",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["fb-like-box","fb-page"],"");tarteaucitron.addScript("//connect.facebook.net/"+tarteaucitron.getLocale()+"/sdk.js#xfbml=1&version=v2.3","facebook-jssdk");if(tarteaucitron.isAjax===true){if(typeof FB!=="undefined"){FB.XFBML.parse()}}},fallback:function(){"use strict";var id="facebooklikebox";tarteaucitron.fallback(["fb-like-box","fb-page"],tarteaucitron.engage(id))}};tarteaucitron.services.facebookcomment={key:"facebookcomment",type:"comment",name:"Facebook (commentaire)",uri:"https://www.facebook.com/policy.php",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["fb-comments"],"");tarteaucitron.addScript("//connect.facebook.net/"+tarteaucitron.getLocale()+"/sdk.js#xfbml=1&version=v2.0","facebook-jssdk");if(tarteaucitron.isAjax===true){if(typeof FB!=="undefined"){FB.XFBML.parse()}}},fallback:function(){"use strict";var id="facebookcomment";tarteaucitron.fallback(["fb-comments"],tarteaucitron.engage(id))}};tarteaucitron.services.ferank={key:"ferank",type:"analytic",name:"FERank",uri:"https://www.ferank.fr/respect-vie-privee/#mesureaudience",needConsent:false,cookies:[],js:function(){"use strict";tarteaucitron.addScript("//static.ferank.fr/pixel.js","",function(){if(typeof tarteaucitron.user.ferankMore==="function"){tarteaucitron.user.ferankMore()}})}};tarteaucitron.services.pingdom={key:"pingdom",type:"api",name:"Pingdom",uri:"https://www.solarwinds.com/general-data-protection-regulation-cloud",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.pingdomId===undefined){return}window._prum=[["id",tarteaucitron.user.pingdomId],["mark","firstbyte",(new Date).getTime()]];tarteaucitron.addScript("https://rum-static.pingdom.net/prum.min.js")}};tarteaucitron.services.simpleanalytics={key:"simpleanalytics",type:"analytic",name:"Simple Analytics",uri:"https://docs.simpleanalytics.com/what-we-collect",needConsent:false,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://scripts.simpleanalyticscdn.com/latest.js")}};tarteaucitron.services.stonly={key:"stonly",type:"api",name:"Stonly (privacy by design)",uri:"https://trust.stonly.com/",needConsent:false,cookies:[],js:function(){"use strict";if(tarteaucitron.user.stonlyId===undefined){return}window.STONLY_WID=tarteaucitron.user.stonlyId;window.StonlyWidget||((window.w=window.StonlyWidget=function(){window.w._api?window.w._api.apply(window.w,arguments):window.w.queue.push(arguments)}).queue=[]);tarteaucitron.addScript("https://stonly.com/js/widget/v2/stonly-widget.js?v="+Date.now())}};tarteaucitron.services.ferankpub={key:"ferankpub",type:"ads",name:"FERank (pub)",uri:"https://www.ferank.fr/respect-vie-privee/#regiepublicitaire",needConsent:false,cookies:[],js:function(){"use strict";tarteaucitron.addScript("//static.ferank.fr/publicite.async.js");if(tarteaucitron.isAjax===true){if(typeof ferankReady==="function"){ferankReady()}}},fallback:function(){"use strict";var id="ferankpub";tarteaucitron.fallback(["ferank-publicite"],tarteaucitron.engage(id))}};tarteaucitron.services.getplus={key:"getplus",type:"analytic",name:"Get+",uri:"https://www.getplus.fr/Conditions-generales-de-vente_a226.html",needConsent:true,cookies:["_first_pageview","_jsuid","no_trackyy_"+tarteaucitron.user.getplusId,"_eventqueue"],js:function(){"use strict";if(tarteaucitron.user.getplusId===undefined){return}window.webleads_site_ids=window.webleads_site_ids||[];window.webleads_site_ids.push(tarteaucitron.user.getplusId);tarteaucitron.addScript("//stats.webleads-tracker.com/js")}};tarteaucitron.services.gplus={key:"gplus",type:"social",name:"Google+",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://apis.google.com/js/platform.js")},fallback:function(){"use strict";var id="gplus";tarteaucitron.fallback(["g-plus","g-plusone"],tarteaucitron.engage(id))}};tarteaucitron.services.gplusbadge={key:"gplusbadge",type:"social",name:"Google+ (badge)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://apis.google.com/js/platform.js")},fallback:function(){"use strict";var id="gplusbadge";tarteaucitron.fallback(["g-page","g-person"],tarteaucitron.engage(id))}};tarteaucitron.services.adsense={key:"adsense",type:"ads",name:"Google Adsense",uri:"https://adssettings.google.com/",needConsent:true,readmoreLink:"https://policies.google.com/technologies/partner-sites",cookies:["__gads"],js:function(){"use strict";tarteaucitron.fallback(["adsbygoogle"],"");tarteaucitron.addScript("https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js")},fallback:function(){"use strict";var id="adsense";tarteaucitron.fallback(["adsbygoogle"],tarteaucitron.engage(id))}};tarteaucitron.services.adsenseauto={key:"adsenseauto",type:"ads",name:"Google Adsense Automatic",uri:"https://adssettings.google.com/",needConsent:true,readmoreLink:"https://policies.google.com/technologies/partner-sites",cookies:["__gads"],js:function(){"use strict";if(tarteaucitron.user.adsensecapub===undefined){return}tarteaucitron.addScript("https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client="+tarteaucitron.user.adsensecapub,"","","","crossorigin","anonymous")}};tarteaucitron.services.adsensesearch={key:"adsensesearch",type:"ads",name:"Google Adsense Search",uri:"https://adssettings.google.com/",needConsent:true,readmoreLink:"https://policies.google.com/technologies/partner-sites",cookies:["__gads"],js:function(){"use strict";tarteaucitron.addScript("https://www.google.com/adsense/search/ads.js")},fallback:function(){"use strict";var id="adsensesearch";tarteaucitron.fallback(["afscontainer1"],tarteaucitron.engage(id))}};tarteaucitron.services.googlepartners={key:"googlepartners",type:"ads",name:"Google Partners Badge",uri:"https://adssettings.google.com/",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://apis.google.com/js/platform.js")},fallback:function(){"use strict";var id="googlepartners";tarteaucitron.fallback(["g-partnersbadge"],tarteaucitron.engage(id))}};tarteaucitron.services.adsensesearchform={key:"adsensesearchform",type:"ads",name:"Google Adsense Search (form)",uri:"https://adssettings.google.com/",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("//www.google.com/coop/cse/brand?form=cse-search-box&lang="+tarteaucitron.getLanguage())}};tarteaucitron.services.adsensesearchresult={key:"adsensesearchresult",type:"ads",name:"Google Adsense Search (result)",uri:"https://adssettings.google.com/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.adsensesearchresultCx===undefined){return}tarteaucitron.addScript("//www.google.com/cse/cse.js?cx="+tarteaucitron.user.adsensesearchresultCx)},fallback:function(){"use strict";var id="adsensesearchresult";if(document.getElementById("gcse_searchresults")){document.getElementById("gcse_searchresults").innerHTML=tarteaucitron.engage(id)}}};tarteaucitron.services.googleadwordsconversion={key:"googleadwordsconversion",type:"ads",name:"Google Adwords (conversion)",uri:"https://www.google.com/settings/ads",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.adwordsconversionId===undefined){return}tarteaucitron.addScript("//www.googleadservices.com/pagead/conversion_async.js","",function(){window.google_trackConversion({google_conversion_id:tarteaucitron.user.adwordsconversionId,google_conversion_label:tarteaucitron.user.adwordsconversionLabel,google_conversion_language:tarteaucitron.user.adwordsconversionLanguage,google_conversion_format:tarteaucitron.user.adwordsconversionFormat,google_conversion_color:tarteaucitron.user.adwordsconversionColor,google_conversion_value:tarteaucitron.user.adwordsconversionValue,google_conversion_currency:tarteaucitron.user.adwordsconversionCurrency,google_custom_params:{parameter1:tarteaucitron.user.adwordsconversionCustom1,parameter2:tarteaucitron.user.adwordsconversionCustom2}})})}};tarteaucitron.services.googleadwordsremarketing={key:"googleadwordsremarketing",type:"ads",name:"Google Adwords (remarketing)",uri:"https://www.google.com/settings/ads",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.adwordsremarketingId===undefined){return}tarteaucitron.addScript("//www.googleadservices.com/pagead/conversion_async.js","",function(){window.google_trackConversion({google_conversion_id:tarteaucitron.user.adwordsremarketingId,google_remarketing_only:true})})}};tarteaucitron.services.gajs={key:"gajs",type:"analytic",name:"Google Analytics (ga.js)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:function(){var googleIdentifier=tarteaucitron.user.gajsUa,tagUaCookie="_gat_gtag_"+googleIdentifier,tagGCookie="_ga_"+googleIdentifier;tagUaCookie=tagUaCookie.replace(/-/g,"_");tagGCookie=tagGCookie.replace(/G-/g,"");return["_ga","_gat","_gid","__utma","__utmb","__utmc","__utmt","__utmz",tagUaCookie,tagGCookie,"_gcl_au"]}(),js:function(){"use strict";if(tarteaucitron.user.gajsUa===undefined){return}window._gaq=window._gaq||[];window._gaq.push(["_setAccount",tarteaucitron.user.gajsUa]);if(timeExpire!==undefined){_gaq.push(["_setVisitorCookieTimeout",timeExpire])}if(tarteaucitron.user.gajsAnonymizeIp){window._gaq.push(["_gat._anonymizeIp"])}if(tarteaucitron.user.gajsPageView){window._gaq.push(["_trackPageview, "+tarteaucitron.user.gajsPageView])}else{window._gaq.push(["_trackPageview"])}tarteaucitron.addScript("//www.google-analytics.com/ga.js","",function(){if(typeof tarteaucitron.user.gajsMore==="function"){tarteaucitron.user.gajsMore()}})}};tarteaucitron.services.analytics={key:"analytics",type:"analytic",name:"Google Analytics (universal)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:function(){var googleIdentifier=tarteaucitron.user.analyticsUa,tagUaCookie="_gat_gtag_"+googleIdentifier,tagGCookie="_ga_"+googleIdentifier;tagUaCookie=tagUaCookie.replace(/-/g,"_");tagGCookie=tagGCookie.replace(/G-/g,"");return["_ga","_gat","_gid","__utma","__utmb","__utmc","__utmt","__utmz",tagUaCookie,tagGCookie,"_gcl_au"]}(),js:function(){"use strict";if(tarteaucitron.user.analyticsUa===undefined){return}window.GoogleAnalyticsObject="ga";window.ga=window.ga||function(){window.ga.q=window.ga.q||[];window.ga.q.push(arguments)};window.ga.l=new Date;tarteaucitron.addScript("https://www.google-analytics.com/analytics.js","",function(){var uaCreate={cookieExpires:timeExpire!==undefined?timeExpire:34128e3};tarteaucitron.extend(uaCreate,tarteaucitron.user.analyticsUaCreate||{});ga("create",tarteaucitron.user.analyticsUa,uaCreate);if(tarteaucitron.user.analyticsAnonymizeIp){ga("set","anonymizeIp",true)}if(typeof tarteaucitron.user.analyticsPrepare==="function"){tarteaucitron.user.analyticsPrepare()}if(tarteaucitron.user.analyticsPageView){ga("send","pageview",tarteaucitron.user.analyticsPageView)}else{ga("send","pageview")}if(typeof tarteaucitron.user.analyticsMore==="function"){tarteaucitron.user.analyticsMore()}})}};tarteaucitron.services.googleads={key:"googleads",type:"ads",name:"Google Ads",uri:"https://policies.google.com/privacy",needConsent:true,cookies:function(){var googleIdentifier=tarteaucitron.user.googleadsId,tagUaCookie="_gat_gtag_"+googleIdentifier,tagGCookie="_ga_"+googleIdentifier;tagUaCookie=tagUaCookie.replace(/-/g,"_");tagGCookie=tagGCookie.replace(/G-/g,"");return["_ga","_gat","_gid","__utma","__utmb","__utmc","__utmt","__utmz",tagUaCookie,tagGCookie,"_gcl_au"]}(),js:function(){"use strict";if(tarteaucitron.user.googleadsId===undefined){return}window.dataLayer=window.dataLayer||[];tarteaucitron.addScript("https://www.googletagmanager.com/gtag/js?id="+tarteaucitron.user.googleadsId,"",function(){window.gtag=function gtag(){dataLayer.push(arguments)};gtag("js",new Date);var additional_config_info=timeExpire!==undefined?{anonymize_ip:true,cookie_expires:timeExpire/1e3}:{anonymize_ip:true};gtag("config",tarteaucitron.user.googleadsId,additional_config_info);if(typeof tarteaucitron.user.googleadsMore==="function"){tarteaucitron.user.googleadsMore()}})},fallback:function(){if(tarteaucitron.parameters.googleConsentMode===true){if(tarteaucitron.parameters.softConsentMode===false){this.js()}}}};tarteaucitron.services.gtag={key:"gtag",type:"analytic",name:"Google Analytics (GA4)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:function(){var googleIdentifier=tarteaucitron.user.gtagUa,tagUaCookie="_gat_gtag_"+googleIdentifier,tagGCookie="_ga_"+googleIdentifier;tagUaCookie=tagUaCookie.replace(/-/g,"_");tagGCookie=tagGCookie.replace(/G-/g,"");return["_ga","_gat","_gid","__utma","__utmb","__utmc","__utmt","__utmz",tagUaCookie,tagGCookie,"_gcl_au"]}(),js:function(){"use strict";if(tarteaucitron.user.gtagUa===undefined){return}window.dataLayer=window.dataLayer||[];tarteaucitron.addScript("https://www.googletagmanager.com/gtag/js?id="+tarteaucitron.user.gtagUa,"",function(){window.gtag=function gtag(){dataLayer.push(arguments)};gtag("js",new Date);var additional_config_info=timeExpire!==undefined?{anonymize_ip:true,cookie_expires:timeExpire/1e3}:{anonymize_ip:true};if(tarteaucitron.user.gtagCrossdomain){gtag("config",tarteaucitron.user.gtagUa,additional_config_info,{linker:{domains:tarteaucitron.user.gtagCrossdomain}})}else{gtag("config",tarteaucitron.user.gtagUa,additional_config_info)}if(typeof tarteaucitron.user.gtagMore==="function"){tarteaucitron.user.gtagMore()}})},fallback:function(){if(tarteaucitron.parameters.googleConsentMode===true){if(tarteaucitron.parameters.softConsentMode===false){this.js()}}}};tarteaucitron.services.firebase={key:"firebase",type:"analytic",name:"Firebase",uri:"https://firebase.google.com/support/privacy",needConsent:true,cookies:function(){var googleIdentifier=tarteaucitron.user.firebaseMeasurementId,tagGCookie="_ga_"+googleIdentifier;tagGCookie=tagGCookie.replace(/G-/g,"");return["_ga",tagGCookie]}(),js:function(){"use strict";if(tarteaucitron.user.firebaseApiKey===undefined){return}tarteaucitron.addScript("https://www.gstatic.com/firebasejs/10.10.0/firebase-app.js","",function(){tarteaucitron.addScript("https://www.gstatic.com/firebasejs/10.10.0/firebase-analytics.js","",function(){var firebaseConfig={apiKey:tarteaucitron.user.firebaseApiKey,authDomain:tarteaucitron.user.firebaseAuthDomain,databaseURL:tarteaucitron.user.firebaseDatabaseUrl,projectId:tarteaucitron.user.firebaseProjectId,storageBucket:tarteaucitron.user.firebaseStorageBucket,appId:tarteaucitron.user.firebaseAppId,measurementId:tarteaucitron.user.firebaseMeasurementId};firebase.initializeApp(firebaseConfig);firebase.analytics()})})}};tarteaucitron.services.genially={key:"genially",type:"api",name:"genially",uri:"https://www.genial.ly/cookies",needConsent:true,cookies:["_gat","_ga","_gid"],js:function(){"use strict";tarteaucitron.fallback(["tac_genially"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"genially iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),geniallyid=tarteaucitron.getElemAttr(x,"geniallyid"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'
          "})},fallback:function(){"use strict";var id="genially";tarteaucitron.fallback(["tac_genially"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.googlemaps={key:"googlemaps",type:"api",name:"Google Maps",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";var mapOptions,map,uniqIds=[],i;if(tarteaucitron.user.mapscallback===undefined){tarteaucitron.user.mapscallback="tac_googlemaps_callback"}var googleMapsLibraries="";if(tarteaucitron.user.googlemapsLibraries){googleMapsLibraries="&libraries="+tarteaucitron.user.googlemapsLibraries}tarteaucitron.addScript("//maps.googleapis.com/maps/api/js?v=3.exp&key="+tarteaucitron.user.googlemapsKey+"&callback="+tarteaucitron.user.mapscallback+googleMapsLibraries);window.tac_googlemaps_callback=function(){tarteaucitron.fallback(["googlemaps-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});var i;for(i=0;i '})},fallback:function(){"use strict";var id="googlemapssearch";tarteaucitron.fallback(["googlemapssearch"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.googlemapsembed={key:"googlemapsembed",type:"api",name:"Google Maps Embed",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["apisid","hsid","nid","sapisid","sid","sidcc","ssid","1p_jar"],js:function(){"use strict";tarteaucitron.fallback(["googlemapsembed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Google maps iframe",width=tarteaucitron.getElemWidth(x),height=tarteaucitron.getElemHeight(x),url=tarteaucitron.getElemAttr(x,"data-url");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="googlemapsembed";tarteaucitron.fallback(["googlemapsembed"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemWidth(elem));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemHeight(elem));return tarteaucitron.engage(id)})}};tarteaucitron.services.openstreetmap={key:"openstreetmap",type:"api",name:"Openstreetmap Embed",uri:"https://wiki.osmfoundation.org/wiki/Privacy_Policy#Cookies",needConsent:true,cookies:["apisid","hsid","nid","sapisid","sid","sidcc","ssid","1p_jar"],js:function(){"use strict";tarteaucitron.fallback(["openstreetmap"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Openstreetmap iframe",width=tarteaucitron.getElemWidth(x),height=tarteaucitron.getElemHeight(x),url=tarteaucitron.getElemAttr(x,"data-url");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="openstreetmap";tarteaucitron.fallback(["openstreetmap"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemWidth(elem));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemHeight(elem));return tarteaucitron.engage(id)})}};tarteaucitron.services.geoportail={key:"geoportail",type:"api",name:"Geoportail maps Embed",uri:"https://www.ign.fr/institut/gestion-des-cookies",needConsent:true,cookies:["apisid","hsid","nid","sapisid","sid","sidcc","ssid","1p_jar"],js:function(){"use strict";tarteaucitron.fallback(["geoportail"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Geoportail maps iframe",width=tarteaucitron.getElemWidth(x),height=tarteaucitron.getElemHeight(x),url=tarteaucitron.getElemAttr(x,"data-url");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="geoportail";tarteaucitron.fallback(["geoportail"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemWidth(elem));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemHeight(elem));return tarteaucitron.engage(id)})}};tarteaucitron.services.googletagmanager={key:"googletagmanager",type:"api",name:"Google Tag Manager",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["_ga","_gat","__utma","__utmb","__utmc","__utmt","__utmz","__gads","_drt_","FLC","exchange_uid","id","fc","rrs","rds","rv","uid","UIDR","UID","clid","ipinfo","acs"],js:function(){"use strict";if(tarteaucitron.user.googletagmanagerId===undefined){return}window.dataLayer=window.dataLayer||[];window.dataLayer.push({"gtm.start":(new Date).getTime(),event:"gtm.js"});tarteaucitron.addScript("https://www.googletagmanager.com/gtm.js?id="+tarteaucitron.user.googletagmanagerId)}};tarteaucitron.services.multiplegoogletagmanager={key:"multiplegoogletagmanager",type:"api",name:"Google Tag Manager",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["_ga","_gat","__utma","__utmb","__utmc","__utmt","__utmz","__gads","_drt_","FLC","exchange_uid","id","fc","rrs","rds","rv","uid","UIDR","UID","clid","ipinfo","acs"],js:function(){"use strict";if(tarteaucitron.user.multiplegoogletagmanagerId===undefined){return}window.dataLayer=window.dataLayer||[];window.dataLayer.push({"gtm.start":(new Date).getTime(),event:"gtm.js"});tarteaucitron.user.multiplegoogletagmanagerId.forEach(function(id){tarteaucitron.addScript("https://www.googletagmanager.com/gtm.js?id="+id)})}};tarteaucitron.services.googlefonts={key:"googlefonts",type:"api",name:"Google Webfonts",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.googleFonts===undefined){return}tarteaucitron.addScript("//ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js","",function(){if(tarteaucitron.user.googleFonts instanceof Array){WebFont.load({google:{families:tarteaucitron.user.googleFonts}})}else{WebFont.load({google:{families:[tarteaucitron.user.googleFonts]}})}})}};tarteaucitron.services.hubspot={key:"hubspot",type:"analytic",name:"Hubspot",uri:"https://legal.hubspot.com/privacy-policy",needConsent:true,cookies:["hubspotutk","fr","__hstc","__hssrc","__hssc","__cfduid"],js:function(){"use strict";if(tarteaucitron.user.hubspotId===undefined){return}tarteaucitron.addScript("//js.hs-scripts.com/"+tarteaucitron.user.hubspotId+".js","hs-script-loader")}};tarteaucitron.services.instagram={key:"instagram",type:"social",name:"Instagram",uri:"https://www.instagram.com/legal/privacy/",needConsent:true,cookies:["shbts","sessionid","csrftoken","rur","shbid","mid","ds_usr_id","ig_did","ig_cb","datr"],js:function(){"use strict";tarteaucitron.fallback(["instagram_post"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Instagram iframe",post_id=tarteaucitron.getElemAttr(x,"postId"),post_permalink=tarteaucitron.getElemAttr(x,"data-instgrm-permalink"),embed_width=tarteaucitron.getElemAttr(x,"width"),embed_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",post_frame;if(post_permalink!=null){tarteaucitron.addScript("//www.instagram.com/embed.js","instagram-embed");return""}if(post_id===undefined){return""}if(embed_width!==""){styleAttr="width:"+tarteaucitron.getStyleSize(embed_width)+";"}if(embed_height!==""){styleAttr="height:"+tarteaucitron.getStyleSize(embed_height)+";"}post_frame='';return post_frame})},fallback:function(){"use strict";var id="instagram";tarteaucitron.fallback(["instagram_post"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.jsapi={key:"jsapi",type:"api",name:"Google jsapi",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("//www.google.com/jsapi")}};tarteaucitron.services.twitterwidgetsapi={key:"twitterwidgetsapi",type:"api",name:"X (formerly Twitter) Widgets API",uri:"https://support.twitter.com/articles/20170514",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tacTwitterAPI"],"");tarteaucitron.addScript("//platform.twitter.com/widgets.js","twitter-wjs")},fallback:function(){"use strict";var id="twitterwidgetsapi";tarteaucitron.fallback(["tacTwitterAPI"],tarteaucitron.engage(id))}};tarteaucitron.services.recaptcha={key:"recaptcha",type:"api",name:"reCAPTCHA",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["nid"],js:function(){"use strict";window.tacRecaptchaOnLoad=tarteaucitron.user.recaptchaOnLoad||function(){};tarteaucitron.fallback(["g-recaptcha"],"");let url="https://www.google.com/recaptcha/api.js?onload=tacRecaptchaOnLoad";if(tarteaucitron.user.recaptchaapi!==undefined){url+="&render="+tarteaucitron.user.recaptchaapi}if(tarteaucitron.user.recaptcha_hl!==undefined){url+="&hl="+tarteaucitron.user.recaptcha_hl}tarteaucitron.addScript(url)},fallback:function(){"use strict";var id="recaptcha";tarteaucitron.fallback(["g-recaptcha"],tarteaucitron.engage(id))}};tarteaucitron.services.linkedin={key:"linkedin",type:"social",name:"Linkedin",uri:"https://www.linkedin.com/legal/cookie-policy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tacLinkedin"],"");tarteaucitron.addScript("//platform.linkedin.com/in.js");if(tarteaucitron.isAjax===true){if(typeof IN!=="undefined"){IN.parse()}}},fallback:function(){"use strict";var id="linkedin";tarteaucitron.fallback(["tacLinkedin"],tarteaucitron.engage(id))}};tarteaucitron.services.mautic={key:"mautic",type:"analytic",name:"Mautic",uri:"https://www.mautic.org/privacy-policy/",needConsent:true,cookies:["mtc_id","mtc_sid"],js:function(){"use strict";if(tarteaucitron.user.mauticurl===undefined){return}window.MauticTrackingObject="mt";window.mt=window.mt||function(){window.mt.q=window.mt.q||[];window.mt.q.push(arguments)};tarteaucitron.addScript(tarteaucitron.user.mauticurl,"",function(){mt("send","pageview")})}};tarteaucitron.services.microsoftcampaignanalytics={key:"microsoftcampaignanalytics",type:"analytic",name:"Microsoft Campaign Analytics",uri:"https://privacy.microsoft.com/privacystatement/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.microsoftcampaignanalyticsUUID===undefined){return}tarteaucitron.addScript("//flex.atdmt.com/mstag/site/"+tarteaucitron.user.microsoftcampaignanalyticsUUID+"/mstag.js","mstag_tops",function(){window.mstag={loadTag:function(){},time:(new Date).getTime()};window.mstag.loadTag("analytics",{dedup:"1",domainId:tarteaucitron.user.microsoftcampaignanalyticsdomainId,type:"1",actionid:tarteaucitron.user.microsoftcampaignanalyticsactionId})})}};tarteaucitron.services.onesignal={key:"onesignal",type:"api",name:"OneSignal",uri:"https://onesignal.com/privacy_policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.onesignalAppId===undefined){return}window.OneSignal=window.OneSignal||[];window.OneSignal.push(function(){window.OneSignal.init({appId:tarteaucitron.user.onesignalAppId})});tarteaucitron.addScript("https://cdn.onesignal.com/sdks/OneSignalSDK.js")}};tarteaucitron.services.pinterest={key:"pinterest",type:"social",name:"Pinterest",uri:"https://about.pinterest.com/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tacPinterest"],"");tarteaucitron.addScript("//assets.pinterest.com/js/pinit.js")},fallback:function(){"use strict";var id="pinterest";tarteaucitron.fallback(["tacPinterest"],tarteaucitron.engage(id))}};tarteaucitron.services.prelinker={key:"prelinker",type:"ads",name:"Prelinker",uri:"https://www.prelinker.com/index/index/cgu/",needConsent:true,cookies:["_sp_id.32f5","_sp_ses.32f5"],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["prelinker-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i'})},fallback:function(){"use strict";var id="prezi";tarteaucitron.fallback(["prezi-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.pubdirecte={key:"pubdirecte",type:"ads",name:"Pubdirecte",uri:"https://pubdirecte.com/contact.php",needConsent:true,cookies:[],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["pubdirecte-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i
          '})},fallback:function(){"use strict";var id="rumbletalk";tarteaucitron.fallback(["rumbletalk"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemWidth(elem));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemHeight(elem));return tarteaucitron.engage(id)})}};tarteaucitron.services.shareaholic={key:"shareaholic",type:"social",name:"Shareaholic",uri:"https://shareaholic.com/privacy/choices",needConsent:true,cookies:["__utma","__utmb","__utmc","__utmz","__utmt_Shareaholic%20Pageviews"],js:function(){"use strict";if(tarteaucitron.user.shareaholicSiteId===undefined){return}tarteaucitron.fallback(["shareaholic-canvas"],"");tarteaucitron.addScript("//dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js","",function(){try{Shareaholic.init(tarteaucitron.user.shareaholicSiteId)}catch(e){}})},fallback:function(){"use strict";var id="shareaholic";tarteaucitron.fallback(["shareaholic-canvas"],tarteaucitron.engage(id))}};tarteaucitron.services.shareasale={key:"shareasale",type:"ads",name:"ShareASale",uri:"https://www.shareasale.com/PrivacyPolicy.pdf",needConsent:true,cookies:[],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["shareasale-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i"}},fallback:function(){"use strict";var id="shareasale";tarteaucitron.fallback(["shareasale-canvas"],tarteaucitron.engage(id))}};tarteaucitron.services.sharethis={key:"sharethis",type:"social",name:"ShareThis",uri:"https://www.sharethis.com/legal/privacy/",needConsent:true,cookies:["__unam"],js:function(){"use strict";if(tarteaucitron.user.sharethisPublisher===undefined){return}var switchTo5x=true,uri=("https:"===document.location.protocol?"https://ws":"http://w")+".sharethis.com/button/buttons.js";tarteaucitron.fallback(["tacSharethis"],"");tarteaucitron.addScript(uri,"",function(){stLight.options({publisher:tarteaucitron.user.sharethisPublisher,doNotHash:false,doNotCopy:false,hashAddressBar:false})});if(tarteaucitron.isAjax===true){if(typeof stButtons!=="undefined"){stButtons.locateElements()}}},fallback:function(){"use strict";var id="sharethis";tarteaucitron.fallback(["tacSharethis"],tarteaucitron.engage(id))}};tarteaucitron.services.slideshare={key:"slideshare",type:"video",name:"SlideShare",uri:"https://www.linkedin.com/legal/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["slideshare-canvas"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Slideshare iframe",id=tarteaucitron.getElemAttr(x,"data-id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url="//www.slideshare.net/slideshow/embed_code/key/"+id;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="slideshare";tarteaucitron.fallback(["slideshare-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.soundcloud={key:"soundcloud",type:"video",name:"SoundCloud",needConsent:true,uri:"https://soundcloud.com/pages/privacy",cookies:["sc_anonymous_id","sclocale"],js:function(){"use strict";tarteaucitron.fallback(["soundcloud_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Soundcloud iframe",player_height=tarteaucitron.getElemAttr(x,"data-height"),frame_height="height:"+tarteaucitron.getStyleSize(player_height)+";",playable_id=tarteaucitron.getElemAttr(x,"data-playable-id"),playable_type=tarteaucitron.getElemAttr(x,"data-playable-type"),playable_url=tarteaucitron.getElemAttr(x,"data-playable-url"),color=tarteaucitron.getElemAttr(x,"data-color"),autoplay=tarteaucitron.getElemAttr(x,"data-auto-play"),hideRelated=tarteaucitron.getElemAttr(x,"data-hide-related"),showComments=tarteaucitron.getElemAttr(x,"data-show-comments"),showUser=tarteaucitron.getElemAttr(x,"data-show-user"),showReposts=tarteaucitron.getElemAttr(x,"data-show-reposts"),showTeaser=tarteaucitron.getElemAttr(x,"data-show-teaser"),visual=tarteaucitron.getElemAttr(x,"data-visual"),artwork=tarteaucitron.getElemAttr(x,"data-artwork");var allowAutoplay=autoplay==="true"?'allow="autoplay"':"";if(playable_id===undefined&&playable_url===undefined){return""}var qs="?url=https%3A//api.soundcloud.com/"+playable_type+"/"+playable_id;if(playable_url&&playable_url.length>0)qs="?url="+escape(playable_url);if(hideRelated&&hideRelated.length>0)qs+="&hide_related="+hideRelated;if(color&&color.length>0)qs+="&color="+color.replace("#","%23");if(autoplay&&autoplay.length>0)qs+="&auto_play="+autoplay;if(showComments&&showComments.length>0)qs+="&show_comments="+showComments;if(hideRelated&&hideRelated.length>0)qs+="&hide_related="+hideRelated;if(showUser&&showUser.length>0)qs+="&show_user="+showUser;if(showReposts&&showReposts.length>0)qs+="&show_reposts="+showReposts;if(showTeaser&&showTeaser.length>0)qs+="&show_teaser="+showTeaser;if(visual&&visual.length>0)qs+="&visual="+visual;if(artwork&&artwork.length>0)qs+="&show_artwork="+artwork;return''})},fallback:function(){"use strict";tarteaucitron.fallback(["soundcloud_player"],function(elem){elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-height"));return tarteaucitron.engage("soundcloud")})}};tarteaucitron.services.spotify={key:"spotify",type:"video",name:"Spotify",uri:"https://www.spotify.com/us/legal/privacy-policy/",needConsent:true,cookies:["sp_landing","_ga","sp_ab","sp_landingref","sp_t","sp_usid","OptanonConsent","sp_m","spot"],js:function(){"use strict";tarteaucitron.fallback(["spotify_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Spotify iframe",spotify_id=tarteaucitron.getElemAttr(x,"spotifyID"),spotify_width=tarteaucitron.getElemAttr(x,"width"),spotify_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",spotify_frame;if(spotify_id===undefined){return""}if(spotify_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(spotify_width)+";"}if(spotify_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(spotify_height)+";"}spotify_frame='';return spotify_frame})},fallback:function(){"use strict";var id="spotify";tarteaucitron.fallback(["spotify_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.statcounter={key:"statcounter",type:"analytic",name:"StatCounter",uri:"https://fr.statcounter.com/about/legal/#privacy",needConsent:true,cookies:["sc_is_visitor_unique"],js:function(){"use strict";var uniqIds=[],i,uri="//statcounter.com/counter/counter.js";tarteaucitron.fallback(["statcounter-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i'})},fallback:function(){"use strict";var id="timelinejs";tarteaucitron.fallback(["timelinejs-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.tagcommander={key:"tagcommander",type:"api",name:"TagCommander",uri:"https://www.commandersact.com/en/privacy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.tagcommanderid===undefined){return}tarteaucitron.addScript("https://cdn.tagcommander.com/"+tarteaucitron.user.tagcommanderid+".js")}};tarteaucitron.services.typekit={key:"typekit",type:"api",name:"Typekit (adobe)",uri:"https://www.adobe.com/privacy.html",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.typekitId===undefined){return}tarteaucitron.addScript("//use.typekit.net/"+tarteaucitron.user.typekitId+".js","",function(){try{Typekit.load()}catch(e){}})}};tarteaucitron.services.twenga={key:"twenga",type:"ads",name:"Twenga",uri:"https://www.twenga.com/privacy.php",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.twengaId===undefined||tarteaucitron.user.twengaLocale===undefined){return}tarteaucitron.addScript("//tracker.twenga."+tarteaucitron.user.twengaLocale+"/st/tracker_"+tarteaucitron.user.twengaId+".js")}};tarteaucitron.services.twitter={key:"twitter",type:"social",name:"X (formerly Twitter)",uri:"https://support.twitter.com/articles/20170514",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tacTwitter"],"");tarteaucitron.addScript("//platform.twitter.com/widgets.js","twitter-wjs")},fallback:function(){"use strict";var id="twitter";tarteaucitron.fallback(["tacTwitter"],tarteaucitron.engage(id))}};tarteaucitron.services.twitterembed={key:"twitterembed",type:"social",name:"X (formerly Twitter) cards",uri:"https://support.twitter.com/articles/20170514",needConsent:true,cookies:[],js:function(){"use strict";var uniqIds=[],i,e,html;tarteaucitron.fallback(["twitterembed-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);html='
          0){params.push("h="+video_hash)}if(params.length>0){video_qs="?"+params.join("&")}if(video_width!==undefined){styleAttr+="width:"+tarteaucitron.getStyleSize(video_width)+";"}if(video_height!==undefined){styleAttr+="height:"+tarteaucitron.getStyleSize(video_height)+";"}video_frame='";return video_frame})},fallback:function(){"use strict";var id="vimeo";tarteaucitron.fallback(["vimeo_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.visualrevenue={key:"visualrevenue",type:"analytic",name:"VisualRevenue",uri:"https://www.outbrain.com/legal/privacy-713/",needConsent:true,cookies:["__vrf","__vrm","__vrl","__vry","__vru","__vrid","__vrz"],js:function(){"use strict";if(tarteaucitron.user.visualrevenueId===undefined){return}window._vrq=window._vrq||[];window._vrq.push(["id",tarteaucitron.user.visualrevenueId]);window._vrq.push(["automate",true]);window._vrq.push(["track",function(){}]);tarteaucitron.addScript("https://a.visualrevenue.com/vrs.js")}};tarteaucitron.services.verizondottag={key:"verizondottag",type:"analytic",name:"Verizon Dot Tag",uri:"https://developer.verizonmedia.com/native/guide/audience-management/dottags/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.verizondottagProjectId===undefined){return}window.dotq=window.dotq||[];window.dotq.push({projectId:tarteaucitron.user.verizondottagProjectId,properties:{pixelId:tarteaucitron.user.verizondottagPixelId}});tarteaucitron.addScript("https://s.yimg.com/wi/ytc.js","",function(){window.dotq=[];window.dotq.push=function(item){YAHOO.ywa.I13N.fireBeacon([item])};YAHOO.ywa.I13N.fireBeacon(items)})}};tarteaucitron.services.vshop={key:"vshop",type:"ads",name:"vShop",uri:"https://vshop.fr/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["vcashW"],"");tarteaucitron.addScript("//vshop.fr/js/w.js")},fallback:function(){"use strict";var id="vshop";tarteaucitron.fallback(["vcashW"],tarteaucitron.engage(id))}};tarteaucitron.services.wysistat={key:"wysistat",type:"analytic",name:"Wysistat",uri:"https://wysistat.net/contact/",needConsent:true,cookies:["Wysistat"],js:function(){"use strict";if(tarteaucitron.user.wysistat===undefined){return}tarteaucitron.addScript("//www.wysistat.com/statistique.js","",function(){window.stat(tarteaucitron.user.wysistat.cli,tarteaucitron.user.wysistat.frm,tarteaucitron.user.wysistat.prm,tarteaucitron.user.wysistat.ce,tarteaucitron.user.wysistat.page,tarteaucitron.user.wysistat.roi,tarteaucitron.user.wysistat.prof,tarteaucitron.user.wysistat.cpt)})}};tarteaucitron.services.xiti={key:"xiti",type:"analytic",name:"Xiti",uri:"https://www.atinternet.com/rgpd-et-vie-privee/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.xitiId===undefined){return}var Xt_param="s="+tarteaucitron.user.xitiId+"&p=",Xt_r,Xt_h,Xt_i,Xt_s,div=document.createElement("div");try{Xt_r=top.document.referrer}catch(e){Xt_r=document.referrer}Xt_h=new Date;Xt_i='=4){Xt_s=screen;Xt_i+="&r="+Xt_s.width+"x"+Xt_s.height+"x"+Xt_s.pixelDepth+"x"+Xt_s.colorDepth}div.innerHTML=Xt_i+"&ref="+Xt_r.replace(/[<>"]/g,"").replace(/&/g,"$")+'" title="Internet Audience">';document.getElementsByTagName("body")[0].appendChild(div.firstChild);if(typeof tarteaucitron.user.xitiMore==="function"){tarteaucitron.user.xitiMore()}}};tarteaucitron.services.atinternet={key:"atinternet",type:"analytic",name:"AT Internet (privacy by design)",uri:"https://www.atinternet.com/rgpd-et-vie-privee/",needConsent:true,safeanalytic:false,cookies:["atidvisitor","atreman","atredir","atsession"],js:function(){"use strict";if(tarteaucitron.user.atLibUrl===undefined){return}if(tarteaucitron.user.atinternetAlreadyLoaded!==undefined){return}tarteaucitron.addScript(tarteaucitron.user.atLibUrl,"",function(){window.tag=new ATInternet.Tracker.Tag;if(typeof window.tag.privacy!=="undefined"){window.tag.privacy.setVisitorOptin()}if(typeof tarteaucitron.user.atMore==="function"){tarteaucitron.user.atMore()}if(tarteaucitron.user.atinternetSendData!==false){window.tag.page.send()}})},fallback:function(){"use strict";if(tarteaucitron.user.atLibUrl===undefined){return}if(tarteaucitron.user.atNoFallback===true){return}tarteaucitron.user.atinternetAlreadyLoaded=true;tarteaucitron.addScript(tarteaucitron.user.atLibUrl,"",function(){window.tag=new ATInternet.Tracker.Tag;if(typeof window.tag.privacy!=="undefined"){var visitorMode=window.tag.privacy.getVisitorMode();if(visitorMode!==null&&visitorMode.name!==undefined&&visitorMode.name=="optout"){window.tag.privacy.setVisitorOptout()}else{window.tag.privacy.setVisitorMode("cnil","exempt")}}if(typeof tarteaucitron.user.atMore==="function"){tarteaucitron.user.atMore()}if(tarteaucitron.user.atinternetSendData!==false){window.tag.page.send()}})}};tarteaucitron.services.atinternethightrack={key:"atinternethightrack",type:"analytic",name:"AT Internet",uri:"https://www.atinternet.com/rgpd-et-vie-privee/",needConsent:true,cookies:["atidvisitor","atreman","atredir","atsession"],js:function(){"use strict";if(tarteaucitron.user.atLibUrl===undefined){return}tarteaucitron.addScript(tarteaucitron.user.atLibUrl,"",function(){var tag=new ATInternet.Tracker.Tag;if(typeof tarteaucitron.user.atMore==="function"){tarteaucitron.user.atMore()}})}};tarteaucitron.services.youtube={key:"youtube",type:"video",name:"YouTube",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["VISITOR_INFO1_LIVE","YSC","PREF","GEUP"],js:function(){"use strict";tarteaucitron.fallback(["youtube_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Youtube iframe",video_id=tarteaucitron.getElemAttr(x,"videoID"),srcdoc=tarteaucitron.getElemAttr(x,"srcdoc"),loading=tarteaucitron.getElemAttr(x,"loading"),video_width=tarteaucitron.getElemAttr(x,"width"),video_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",video_frame,allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen"),start=tarteaucitron.getElemAttr(x,"start"),end=tarteaucitron.getElemAttr(x,"end"),attrs=["theme","rel","controls","showinfo","autoplay","mute","start","end","loop","enablejsapi"],params=attrs.filter(function(a){return tarteaucitron.getElemAttr(x,a)!==null}).map(function(a){return a+"="+tarteaucitron.getElemAttr(x,a)}).join("&");if(tarteaucitron.getElemAttr(x,"loop")==1){params=params+"&playlist="+video_id}if(video_id===undefined){return""}if(video_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(video_width)+";"}if(video_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(video_height)+";"}if(srcdoc!==undefined&&srcdoc!==null&&srcdoc!==""){srcdoc='srcdoc="'+srcdoc+'" '}else{srcdoc=""}if(loading!==undefined&&loading!==null&&loading!==""){loading="loading "}else{loading=""}video_frame='";return video_frame})},fallback:function(){"use strict";var id="youtube";tarteaucitron.fallback(["youtube_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.youtubeplaylist={key:"youtubeplaylist",type:"video",name:"YouTube (playlist)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["VISITOR_INFO1_LIVE","YSC","PREF","GEUP"],js:function(){"use strict";tarteaucitron.fallback(["youtube_playlist_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Youtube iframe",playlist_id=tarteaucitron.getElemAttr(x,"playlistID"),video_width=tarteaucitron.getElemAttr(x,"width"),video_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",video_frame,allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen"),params="theme="+tarteaucitron.getElemAttr(x,"theme")+"&rel="+tarteaucitron.getElemAttr(x,"rel")+"&controls="+tarteaucitron.getElemAttr(x,"controls")+"&showinfo="+tarteaucitron.getElemAttr(x,"showinfo")+"&autoplay="+tarteaucitron.getElemAttr(x,"autoplay")+"&mute="+tarteaucitron.getElemAttr(x,"mute");if(playlist_id===undefined){return""}if(video_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(video_width)+";"}if(video_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(video_height)+";"}video_frame='";return video_frame})},fallback:function(){"use strict";var id="youtubeplaylist";tarteaucitron.fallback(["youtube_playlist_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.zopim={key:"zopim",type:"support",name:"Zopim",uri:"https://www.zopim.com/privacy",needConsent:true,cookies:["__zlcid","__zprivacy"],js:function(){"use strict";if(tarteaucitron.user.zopimID===undefined){return}tarteaucitron.addScript("//v2.zopim.com/?"+tarteaucitron.user.zopimID)}};tarteaucitron.services.kameleoon={key:"kameleoon",type:"analytic",name:"Kameleoon",uri:"https://www.kameleoon.com/fr/compliance/rgpd",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.kameleoon!==undefined){tarteaucitron.addScript("https://"+tarteaucitron.user.kameleoon+".kameleoon.eu/kameleoon.js")}}};tarteaucitron.services.linkedininsighttag={key:"linkedininsighttag",type:"ads",name:"Linkedin Insight",uri:"https://www.linkedin.com/legal/cookie-policy",needConsent:true,cookies:["li_fat_id"],js:function(){"use strict";if(tarteaucitron.user.linkedininsighttag!==undefined){window._linkedin_data_partner_ids=window._linkedin_data_partner_ids||[];window._linkedin_data_partner_ids.push(tarteaucitron.user.linkedininsighttag)}tarteaucitron.addScript("https://snap.licdn.com/li.lms-analytics/insight.min.js")}};tarteaucitron.services.xiti_smarttag={key:"xiti_smarttag",type:"analytic",name:"Xiti (SmartTag)",uri:"https://www.atinternet.com/rgpd-et-vie-privee/",needConsent:true,cookies:["atidvisitor","atreman","atredir","atsession","attvtreman","attvtsession"],js:function(){"use strict";if(tarteaucitron.user.xiti_smarttagLocalPath!==undefined){tarteaucitron.addScript(tarteaucitron.user.xiti_smarttagLocalPath,"smarttag",null,null,"onload","addTracker();")}else{var xitiSmarttagId=tarteaucitron.user.xiti_smarttagSiteId;if(xitiSmarttagId===undefined){return}tarteaucitron.addScript("//tag.aticdn.net/"+xitiSmarttagId+"/smarttag.js","smarttag",null,null,"onload","addTracker();")}}};tarteaucitron.services.facebookpixel={key:"facebookpixel",type:"ads",name:"Facebook Pixel",uri:"https://www.facebook.com/policy.php",needConsent:true,cookies:["datr","fr","reg_ext_ref","reg_fb_gate","reg_fb_ref","sb","wd","x-src","_fbp"],js:function(){"use strict";if(tarteaucitron.user.facebookpixelId===undefined){return}var n;if(window.fbq)return;n=window.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!window._fbq)window._fbq=n;n.push=n;n.loaded=!0;n.version="2.0";n.queue=[];tarteaucitron.addScript("https://connect.facebook.net/en_US/fbevents.js");fbq("init",tarteaucitron.user.facebookpixelId);fbq("track","PageView");if(typeof tarteaucitron.user.facebookpixelMore==="function"){tarteaucitron.user.facebookpixelMore()}}};tarteaucitron.services.issuu={key:"issuu",type:"other",name:"Issuu",uri:"https://issuu.com/legal/privacy",needConsent:true,cookies:["__qca","iutk","mc"],js:function(){"use strict";tarteaucitron.fallback(["issuu_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Issuu iframe",issuu_id=tarteaucitron.getElemAttr(x,"issuuID"),issuu_width=tarteaucitron.getElemAttr(x,"width"),issuu_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",issuu_frame,issuu_embed;if(issuu_id===undefined){return""}if(issuu_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(issuu_width)+";"}if(issuu_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(issuu_height)+";"}if(issuu_id.match(/\d+\/\d+/)){issuu_embed="#"+issuu_id}else if(issuu_id.match(/d=(.*)&u=(.*)/)){issuu_embed="?"+issuu_id}issuu_frame='';return issuu_frame})},fallback:function(){"use strict";var id="issuu";tarteaucitron.fallback(["issuu_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.webmecanik={key:"webmecanik",type:"analytic",name:"Webmecanik",uri:"https://webmecanik.com/tos",needConsent:true,cookies:["mtc_id","mtc_sid"],js:function(){"use strict";if(tarteaucitron.user.webmecanikurl===undefined){return}window.MauticTrackingObject="mt";window.mt=window.mt||function(){window.mt.q=window.mt.q||[];window.mt.q.push(arguments)};tarteaucitron.addScript(tarteaucitron.user.webmecanikurl,"",function(){mt("send","pageview")})}};tarteaucitron.services.multiplegtag={key:"multiplegtag",type:"analytic",name:"Google Analytics (gtag.js)",uri:"https://support.google.com/analytics/answer/6004245",needConsent:true,cookies:function(){var cookies=["_ga","_gat","_gid","__utma","__utmb","__utmc","__utmt","__utmz","_gcl_au"];if(tarteaucitron.user.multiplegtagUa!==undefined){tarteaucitron.user.multiplegtagUa.forEach(function(ua){cookies.push("_gat_gtag_"+ua.replace(/-/g,"_"));cookies.push("_ga_"+ua.replace(/G-/g,""))})}return cookies}(),js:function(){"use strict";window.dataLayer=window.dataLayer||[];if(tarteaucitron.user.multiplegtagUa!==undefined){tarteaucitron.user.multiplegtagUa.forEach(function(ua){tarteaucitron.addScript("https://www.googletagmanager.com/gtag/js?id="+ua,"",function(){window.gtag=function gtag(){dataLayer.push(arguments)};gtag("js",new Date);var additional_config_info=timeExpire!==undefined?{anonymize_ip:true,cookie_expires:timeExpire/1e3}:{anonymize_ip:true};gtag("config",ua,additional_config_info)})})}},fallback:function(){if(tarteaucitron.parameters.googleConsentMode===true){if(tarteaucitron.parameters.softConsentMode===false){this.js()}}}};tarteaucitron.services.koban={key:"koban",type:"analytic",name:"Koban",uri:"https://koban.cloud/tos",needConsent:true,cookies:["kbntrk"],js:function(){"use strict";if(tarteaucitron.user.kobanurl===undefined){return}if(tarteaucitron.user.kobanapi===undefined){return}window.KobanObject="kb";window.kb=window.kb||function(){window.kb.q=window.kb.q||[];window.kb.q.push(arguments)};window.kb.l=new Date;kb("reg",tarteaucitron.user.kobanapi);tarteaucitron.addScript(tarteaucitron.user.kobanurl,"",function(){})}};tarteaucitron.services.matomo={key:"matomo",type:"analytic",name:"Matomo (privacy by design)",uri:"https://matomo.org/faq/general/faq_146/",needConsent:false,cookies:["_pk_ref","_pk_cvar","_pk_id","_pk_ses","_pk_hsr","piwik_ignore","_pk_uid"],js:function(){"use strict";if(tarteaucitron.user.matomoId===undefined){return}window._paq=window._paq||[];window._paq.push(["setSiteId",tarteaucitron.user.matomoId]);window._paq.push(["setTrackerUrl",tarteaucitron.user.matomoHost+"piwik.php"]);window._paq.push(["setDoNotTrack",1]);window._paq.push(["trackPageView"]);window._paq.push(["setIgnoreClasses",["no-tracking","colorbox"]]);window._paq.push(["enableLinkTracking"]);if(typeof tarteaucitron.user.matomoMore==="function"){tarteaucitron.user.matomoMore()}window._paq.push([function(){var self=this;function getOriginalVisitorCookieTimeout(){var now=new Date,nowTs=Math.round(now.getTime()/1e3),visitorInfo=self.getVisitorInfo();var createTs=parseInt(visitorInfo[2]);var cookieTimeout=33696e3;var originalTimeout=createTs+cookieTimeout-nowTs;return originalTimeout}this.setVisitorCookieTimeout(getOriginalVisitorCookieTimeout())}]);tarteaucitron.addScript(tarteaucitron.user.matomoHost+"piwik.js","","",true,"defer",true);var interval=setInterval(function(){if(typeof Piwik==="undefined")return;clearInterval(interval);Piwik.getTracker();var theCookies=document.cookie.split(";");for(var i=1;i<=theCookies.length;i++){var cookie=theCookies[i-1].split("=");var cookieName=cookie[0].trim();if(cookieName.indexOf("_pk_")===0){tarteaucitron.services.matomo.cookies.push(cookieName)}}},100)}};tarteaucitron.services.matomohightrack={key:"matomohightrack",type:"analytic",name:"Matomo",uri:"https://matomo.org/faq/general/faq_146/",needConsent:false,cookies:["_pk_ref","_pk_cvar","_pk_id","_pk_ses","_pk_hsr","piwik_ignore","_pk_uid"],js:function(){"use strict";if(tarteaucitron.user.matomoId===undefined){return}window._paq=window._paq||[];window._paq.push(["setSiteId",tarteaucitron.user.matomoId]);window._paq.push(["setTrackerUrl",tarteaucitron.user.matomoHost+"piwik.php"]);window._paq.push(["trackPageView"]);window._paq.push(["setIgnoreClasses",["no-tracking","colorbox"]]);window._paq.push(["enableLinkTracking"]);window._paq.push([function(){var self=this}]);tarteaucitron.addScript(tarteaucitron.user.matomoHost+"piwik.js","","",true,"defer",true);var interval=setInterval(function(){if(typeof Piwik==="undefined")return;clearInterval(interval);Piwik.getTracker();var theCookies=document.cookie.split(";");for(var i=1;i<=theCookies.length;i++){var cookie=theCookies[i-1].split("=");var cookieName=cookie[0].trim();if(cookieName.indexOf("_pk_")===0){tarteaucitron.services.matomo.cookies.push(cookieName)}}},100)}};tarteaucitron.services.matomocloud={key:"matomocloud",type:"analytic",name:"Matomo Cloud (privacy by design)",uri:"https://matomo.org/faq/general/faq_146/",needConsent:true,cookies:["_pk_ref","_pk_cvar","_pk_id","_pk_ses","_pk_hsr","mtm_consent","matomo_ignore","matomo_sessid"],js:function(){"use strict";if(tarteaucitron.user.matomoId===undefined){return}window._paq=window._paq||[];if(tarteaucitron.user.matomoFullTracking===true){window._paq.push(["requireCookieConsent"]);window._paq.push(["setCookieConsentGiven"]);window._paq.push(["trackAllContentImpressions"])}else{window._paq.push(["requireConsent"]);window._paq.push(["setConsentGiven"])}window._paq.push(["setSiteId",tarteaucitron.user.matomoId]);window._paq.push(["setTrackerUrl",tarteaucitron.user.matomoHost+"matomo.php"]);window._paq.push(["enableLinkTracking"]);if(tarteaucitron.user.matomoDontTrackPageView!==true){window._paq.push(["trackPageView"])}if(tarteaucitron.user.matomoCustomJSPath===undefined||tarteaucitron.user.matomoCustomJSPath==""){tarteaucitron.addScript("https://cdn.matomo.cloud/matomo.js","","",true,"defer",true)}else{tarteaucitron.addScript(tarteaucitron.user.matomoCustomJSPath,"","",true,"defer",true)}if(typeof tarteaucitron.user.matomocloudMore==="function"){tarteaucitron.user.matomocloudMore()}var interval=setInterval(function(){if(typeof Matomo==="undefined")return;clearInterval(interval);Matomo.getTracker();var theCookies=document.cookie.split(";");for(var i=1;i<=theCookies.length;i++){var cookie=theCookies[i-1].split("=");var cookieName=cookie[0].trim();if(cookieName.indexOf("_pk_")===0){tarteaucitron.services.matomo.cookies.push(cookieName)}}},100)},fallback:function(){"use strict";if(tarteaucitron.user.matomoId===undefined){return}window._paq=window._paq||[];if(tarteaucitron.user.matomoFullTracking===true){window._paq.push(["requireCookieConsent"])}else{window._paq.push(["requireConsent"])}window._paq.push(["setSiteId",tarteaucitron.user.matomoId]);window._paq.push(["setTrackerUrl",tarteaucitron.user.matomoHost+"matomo.php"]);window._paq.push(["trackPageView"]);window._paq.push(["enableLinkTracking"]);if(typeof tarteaucitron.user.matomocloudMore==="function"){tarteaucitron.user.matomocloudMore()}if(tarteaucitron.user.matomoCustomJSPath===undefined||tarteaucitron.user.matomoCustomJSPath==""){tarteaucitron.addScript("https://cdn.matomo.cloud/matomo.js","","",true,"defer",true)}else{tarteaucitron.addScript(tarteaucitron.user.matomoCustomJSPath,"","",true,"defer",true)}}};tarteaucitron.services.matomotm={key:"matomotm",type:"api",name:"Matomo Tag Manager",uri:"https://matomo.org/privacy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.matomotmUrl===undefined){return}var _mtm=window._mtm=window._mtm||[];_mtm.push({"mtm.startTime":(new Date).getTime(),event:"mtm.Start"});tarteaucitron.addScript(tarteaucitron.user.matomotmUrl)}};tarteaucitron.services.hotjar={key:"hotjar",type:"analytic",name:"Hotjar",uri:"https://help.hotjar.com/hc/en-us/categories/115001323967-About-Hotjar",needConsent:true,cookies:["hjClosedSurveyInvites","_hjDonePolls","_hjMinimizedPolls","_hjShownFeedbackMessage","_hjAbsoluteSessionInProgress","_hjid"],js:function(){"use strict";if(tarteaucitron.user.hotjarId===undefined||tarteaucitron.user.HotjarSv===undefined){return}window.hj=window.hj||function(){(window.hj.q=window.hj.q||[]).push(arguments)};window._hjSettings={hjid:tarteaucitron.user.hotjarId,hjsv:tarteaucitron.user.HotjarSv};var uri="https://static.hotjar.com/c/hotjar-";var extension=".js?sv=";tarteaucitron.addScript(uri+window._hjSettings.hjid+extension+window._hjSettings.hjsv)}};tarteaucitron.services.bingads={key:"bingads",type:"ads",name:"Bing Ads Universal Event Tracking",uri:"https://advertise.bingads.microsoft.com/en-us/resources/policies/personalized-ads",needConsent:true,cookies:["_uetmsclkid","_uetvid","_uetsid"],js:function(){"use strict";if(tarteaucitron.user.bingadsID===undefined){return}window.uetq=window.uetq||[];tarteaucitron.addScript("https://bat.bing.com/bat.js","",function(){var bingadsCreate={ti:tarteaucitron.user.bingadsID};if("bingadsStoreCookies"in tarteaucitron.user){bingadsCreate["storeConvTrackCookies"]=tarteaucitron.user.bingadsStoreCookies}bingadsCreate.q=window.uetq;window.uetq=new UET(bingadsCreate);window.uetq.push("pageLoad");if(typeof tarteaucitron.user.bingadsMore==="function"){tarteaucitron.user.bingadsMore()}})},fallback:function(){if(tarteaucitron.parameters.bingConsentMode===true){if(tarteaucitron.parameters.softConsentMode===false){this.js()}}}};tarteaucitron.services.matterport={key:"matterport",type:"other",name:"Matterport",uri:"https://matterport.com/es/legal/privacy-policy/",needConsent:true,cookies:["__cfduid","ajs_anonymous_id","ajs_group_id","ajs_user_id"],js:function(){"use strict";tarteaucitron.fallback(["matterport"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Matterport iframe",matterport_id=tarteaucitron.getElemAttr(x,"matterportID"),matterport_width=tarteaucitron.getElemAttr(x,"width"),matterport_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",matterport_parameters=tarteaucitron.getElemAttr(x,"parameters"),matterport_allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen"),matterport_frame;if(matterport_id===undefined){return""}if(matterport_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(matterport_width)+";"}if(matterport_height!==undefined){styleAttr+="height:"+tarteaucitron.getStyleSize(matterport_height)+";"}if(matterport_parameters===undefined){return""}matterport_frame='";return matterport_frame})},fallback:function(){"use strict";var id="matterport";tarteaucitron.fallback(["matterport"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.adform={key:"adform",type:"ads",name:"Adform",uri:"https://site.adform.com/privacy-center/overview/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.adformpm===undefined||tarteaucitron.user.adformpagename===undefined){return}window._adftrack={pm:tarteaucitron.user.adformpm,divider:encodeURIComponent("|"),pagename:encodeURIComponent(tarteaucitron.user.adformpagename)};tarteaucitron.addScript("https://track.adform.net/serving/scripts/trackpoint/async/")}};tarteaucitron.services.activecampaign={key:"activecampaign",type:"ads",name:"Active Campaign",uri:"https://www.activecampaign.com/privacy-policy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.actid===undefined){return}window.trackcmp_email="";tarteaucitron.addScript("https://trackcmp.net/visit?actid="+tarteaucitron.user.actid+"&e="+encodeURIComponent(trackcmp_email)+"&r="+encodeURIComponent(document.referrer)+"&u="+encodeURIComponent(window.location.href))}};tarteaucitron.services.tawkto={key:"tawkto",type:"support",name:"Tawk.to chat",uri:"https://www.tawk.to/data-protection/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.tawktoId===undefined){return}tarteaucitron.user.tawktoWidgetId=tarteaucitron.user.tawktoWidgetId||"default";window.Tawk_API=window.Tawk_API||{};window.Tawk_LoadStart=new Date;tarteaucitron.addScript("https://embed.tawk.to/"+tarteaucitron.user.tawktoId+"/"+tarteaucitron.user.tawktoWidgetId)}};tarteaucitron.services.getquanty={key:"getquanty",type:"analytic",name:"GetQuanty",uri:"https://www.getquanty.com/mentions-legales/",needConsent:true,cookies:["_first_pageview","eqy_sessionid","eqy_siteid","cluid","eqy_company","cluid","gq_utm","_jsuid"],js:function(){"use strict";if(tarteaucitron.user.getguanty===undefined){return}if(tarteaucitron.user.getquantyAlreadyLoaded!==undefined){return}tarteaucitron.addScript("https://get.smart-data-systems.com/gq?site_id="+tarteaucitron.user.getguanty+"&consent=1")},fallback:function(){"use strict";if(tarteaucitron.user.getguanty===undefined){return}tarteaucitron.user.getquantyAlreadyLoaded=true;tarteaucitron.addScript("https://get.smart-data-systems.com/gq?site_id="+tarteaucitron.user.getguanty+"¬rack=1")}};tarteaucitron.services.emolytics={key:"emolytics",type:"analytic",name:"Emolytics",uri:"https://www.emolytics.com/main/privacy-policy.php",needConsent:true,cookies:["__hssc","__hssrc","__hstc","_ga","_gid","hubspotutk","lang","incap_ses_","nlbi_","visid_incap_"],js:function(){"use strict";if(tarteaucitron.user.emolyticsID===undefined){return}var scriptEmolytics=document.createElement("script");scriptEmolytics.text='var getsmily_id="'+tarteaucitron.user.emolyticsID+'";';document.getElementsByTagName("body")[0].appendChild(scriptEmolytics);tarteaucitron.addScript("https://cdn.emolytics.com/script/emolytics-widget.js")}};tarteaucitron.services.youtubeapi={key:"youtubeapi",type:"video",name:"Youtube (Js API)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://www.youtube.com/player_api")}};tarteaucitron.services.faciliti={key:"faciliti",type:"other",name:"Facil'ITI",uri:"https://www.facil-iti.com/legal-terms/",needConsent:true,cookies:["FACIL_ITI"],js:function(){"use strict";if(tarteaucitron.user.facilitiID===undefined){return}(function(){var fs=document.createElement("script");fs.setAttribute("src","https://cdn.facil-iti.app/tags/faciliti-tag.min.js");fs.dataset.applicationIdentifier=tarteaucitron.user.facilitiID;document.head.appendChild(fs)})()}};tarteaucitron.services.userlike={key:"userlike",type:"support",name:"Userlike",uri:"https://www.userlike.com/en/terms#privacy-policy",needConsent:true,cookies:["uslk_s","uslk_e"],js:function(){"use strict";if(tarteaucitron.user.userlikeKey===undefined){return}tarteaucitron.addScript("//userlike-cdn-widgets.s3-eu-west-1.amazonaws.com/"+tarteaucitron.user.userlikeKey)}};tarteaucitron.services.adobeanalytics={key:"adobeanalytics",type:"analytic",name:"Adobe Analytics",uri:"https://www.adobe.com/privacy/policy.html",needConsent:true,cookies:["s_ecid","s_cc","s_sq","s_vi","s_fid"],js:function(){"use strict";if(tarteaucitron.user.adobeanalyticskey===undefined){return}tarteaucitron.addScript("//assets.adobedtm.com/launch-"+tarteaucitron.user.adobeanalyticskey+".min.js")}};tarteaucitron.services.woopra={key:"woopra",type:"analytic",name:"Woopra Customer Journey Analytics",uri:"https://www.woopra.com/privacy",needConsent:true,cookies:["wooTracker","intercom-session-erbfalba","intercom-id-erbfalba"],js:function(){"use strict";if(tarteaucitron.user.woopraDomain===undefined){return}(function(){var t,i,e,n=window,o=document,a=arguments,s="script",r=["config","track","identify","visit","push","call","trackForm","trackClick"],c=function(){var t,i=this;for(i._e=[],t=0;r.length>t;t++)(function(t){i[t]=function(){return i._e.push([t].concat(Array.prototype.slice.call(arguments,0))),i}})(r[t])};for(n._w=n._w||{},t=0;a.length>t;t++)n._w[a[t]]=n[a[t]]=n[a[t]]||new c;i=o.createElement(s),i.async=1,i.src="//static.woopra.com/js/w.js",e=o.getElementsByTagName(s)[0],e.parentNode.insertBefore(i,e)})("woopra");woopra.config({domain:tarteaucitron.user.woopraDomain});woopra.track()}};tarteaucitron.services.ausha={key:"ausha",type:"video",name:"Ausha",uri:"https://www.ausha.co/protection-personal-data/",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["ausha_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Ausha iframe",player_height=tarteaucitron.getElemAttr(x,"data-height"),podcast_id=tarteaucitron.getElemAttr(x,"data-podcast-id"),player_id=tarteaucitron.getElemAttr(x,"data-player-id"),playlist=tarteaucitron.getElemAttr(x,"data-playlist"),useshowid=tarteaucitron.getElemAttr(x,"data-useshowid"),color=tarteaucitron.getElemAttr(x,"data-color");if(podcast_id===undefined){return""}var src="https://player.ausha.co/index.html?podcastId="+podcast_id+"&v=3";if(useshowid=="1"){src="https://player.ausha.co/index.html?showId="+podcast_id+"&v=3"}if(playlist&&playlist.length>0)src+="&playlist="+playlist;if(color&&color.length>0)src+="&color="+color.replace("#","%23");if(player_id&&player_id.length>0)src+="&playerId="+player_id;return''});tarteaucitron.addScript("//player.ausha.co/ausha-player.js","ausha-player")},fallback:function(){"use strict";tarteaucitron.fallback(["ausha_player"],function(elem){elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-height"));return tarteaucitron.engage("ausha")})}};tarteaucitron.services.visiblee={key:"visiblee",type:"analytic",name:"Visiblee",uri:"https://confidentiality.visiblee.io/fr/confidentialite",needConsent:true,cookies:["visitor_v2",tarteaucitron.user.visibleedomain,"check","campaign_ref_"+tarteaucitron.user.visibleedomain,"reload_"+tarteaucitron.user.visibleedomain],js:function(){"use strict";if(tarteaucitron.user.visibleeclientid===undefined){return}tarteaucitron.addScript("//www.link-page.info/tracking_"+tarteaucitron.user.visibleeclientid+".js","visiblee")}};tarteaucitron.services.bandcamp={key:"bandcamp",type:"video",name:"Bandcamp",uri:"https://bandcamp.com",readmoreLink:"https://bandcamp.com/privacy",needConsent:true,cookies:["client_id","BACKENDID","_comm_playlist"],js:function(){"use strict";tarteaucitron.fallback(["bandcamp_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Bandcamp iframe",album_id=tarteaucitron.getElemAttr(x,"albumID"),bandcamp_width=tarteaucitron.getElemAttr(x,"width"),bandcamp_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",attrs=["size","bgcol","linkcol","artwork","minimal","tracklist","package","transparent"],params=attrs.filter(function(a){return tarteaucitron.getElemAttr(x,a)!==null}).map(function(a){if(a&&a.length>0)return a+"="+tarteaucitron.getElemAttr(x,a)}).join("/");if(album_id===null){return""}if(bandcamp_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(bandcamp_width)+";"}if(bandcamp_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(bandcamp_height)+";"}var src="https://bandcamp.com/EmbeddedPlayer/album="+album_id+"/"+params;return''})},fallback:function(){"use strict";tarteaucitron.fallback(["bandcamp_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage("bandcamp")})}};tarteaucitron.services.discord={key:"discord",type:"social",name:"Discord (Server Widget)",needConsent:true,cookies:["__cfruid","__dcfduid","_ga","_gcl_au","OptanonConsent","locale","_gid"],uri:"https://discord.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["discord_widget"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Discord iframe",id=tarteaucitron.getElemAttr(x,"guildID"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var widgetURL="https://discord.com/widget?id="+id;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="discord";tarteaucitron.fallback(["discord_widget"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.maps_noapi={key:"maps_noapi",type:"other",name:"Google Maps",needConsent:true,cookies:["NID","OGPC","1P_JAR","CONSENT"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["googlemaps_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google maps iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var widgetURL="https://www.google.com/maps/embed?pb="+id;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="maps_noapi";tarteaucitron.fallback(["googlemaps_embed"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.hcaptcha={key:"hcaptcha",type:"other",name:"hCaptcha",needConsent:true,cookies:[],uri:"https://www.hcaptcha.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["h-captcha"],"");tarteaucitron.addScript("https://hcaptcha.com/1/api.js","hcaptcha")},fallback:function(){"use strict";var id="hcaptcha";tarteaucitron.fallback(["h-captcha"],tarteaucitron.engage(id))}};tarteaucitron.services.fculture={key:"fculture",type:"video",name:"France Culture",needConsent:true,cookies:["_gid","didomi_token","outbrain_cid_fetch","xtvrn","xtant","YSC","ABTasty","xtan","ABTastySession","xtidc","_ga","VISITOR_INFO1_LIVE","euconsent-v2","v1st","dmvk","ts","VISITOR_INFO1_LIVE","YSC"],uri:"https://www.radiofrance.com/politique-d-utilisation-des-cookies-sur-les-sites-internet-du-groupe-radio-france",js:function(){"use strict";tarteaucitron.fallback(["fculture_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"France culture iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="fculture";tarteaucitron.fallback(["fculture_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.acast={key:"acast",type:"video",name:"Acast",needConsent:true,cookies:["intercom-id-ayi0335i","intercom-session-ayi0335i"],uri:"https://www.acast.com/en/privacy",js:function(){"use strict";tarteaucitron.fallback(["acast_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Acast iframe",id=tarteaucitron.getElemAttr(x,"id1"),id2=tarteaucitron.getElemAttr(x,"id2"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),seek=tarteaucitron.getElemAttr(x,"seek");var widgetURL="https://embed.acast.com/"+id+"/"+id2+"?seek="+seek;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="acast";tarteaucitron.fallback(["acast_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.mixcloud={key:"mixcloud",type:"video",name:"Mixcloud",needConsent:true,cookies:["UID","_gat","__stripe_mid","_gid","_ga","c","csrftoken","__stripe_sid","mx_t"],uri:"https://www.mixcloud.com/privacy/",js:function(){"use strict";tarteaucitron.fallback(["mixcloud_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Mixcloud iframe",id=tarteaucitron.getElemAttr(x,"id"),hidecover=tarteaucitron.getElemAttr(x,"hidecover"),mini=tarteaucitron.getElemAttr(x,"mini"),light=tarteaucitron.getElemAttr(x,"light"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="mixcloud";tarteaucitron.fallback(["mixcloud_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.gagenda={key:"gagenda",type:"other",name:"Google Agenda",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["gagenda_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google agenda iframe",calendar_data=tarteaucitron.getElemAttr(x,"data"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="gagenda";tarteaucitron.fallback(["gagenda_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.gdocs={key:"gdocs",type:"other",name:"Google Docs",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["gdocs_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google docs iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="gdocs";tarteaucitron.fallback(["gdocs_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.gsheets={key:"gsheets",type:"other",name:"Google Sheets",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["gsheets_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google sheets iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),headers=tarteaucitron.getElemAttr(x,"headers");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="gsheets";tarteaucitron.fallback(["gsheets_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.gslides={key:"gslides",type:"other",name:"Google Slides",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["gslides_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google slides iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),autostart=tarteaucitron.getElemAttr(x,"autostart"),loop=tarteaucitron.getElemAttr(x,"loop"),delay=tarteaucitron.getElemAttr(x,"delay");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="gslides";tarteaucitron.fallback(["gslides_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.gforms={key:"gforms",type:"other",name:"Google Forms",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["gforms_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google forms iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="gforms";tarteaucitron.fallback(["gforms_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.goptimize={key:"goptimize",type:"other",name:"Google Optimize",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";if(tarteaucitron.user.goptimize===undefined){return}tarteaucitron.addScript("https://www.googleoptimize.com/optimize.js?id="+tarteaucitron.user.goptimize)}};tarteaucitron.services.marketomunchkin={key:"marketomunchkin",type:"api",name:"Marketo munchkin",uri:"https://documents.marketo.com/legal/cookies",needConsent:true,cookies:["OptAnon","_mkto_trk"],js:function(){"use strict";if(tarteaucitron.user.marketomunchkinkey===undefined){return}var didInit=false;function initMunchkin(){if(didInit===false){didInit=true;Munchkin.init(tarteaucitron.user.marketomunchkinkey)}}var s=document.createElement("script");s.type="text/javascript";s.async=true;s.src="//munchkin.marketo.net/munchkin.js";s.onreadystatechange=function(){if(this.readyState=="complete"||this.readyState=="loaded"){initMunchkin()}};s.onload=initMunchkin;document.getElementsByTagName("head")[0].appendChild(s)}};tarteaucitron.services.outbrain={key:"outbrain",type:"ads",name:"Outbrain",uri:"https://www.outbrain.com/fr/advertisers/guidelines/",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://widgets.outbrain.com/outbrain.js")}};tarteaucitron.services.affilae={key:"affilae",type:"ads",name:"Affilae",uri:"https://affilae.com/en/privacy-cookie-policy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.affilae===undefined){return}window._ae={pid:tarteaucitron.user.affilae};tarteaucitron.addScript("https://static.affilae.com/ae-v3.5.js")}};tarteaucitron.services.canalu={key:"canalu",type:"video",name:"Canal-U.tv",uri:"https://www.canal-u.tv/conditions-generales-utilisations",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["canalu_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Canal-u.tv iframe",video_title=tarteaucitron.getElemAttr(x,"videoTitle"),frame_url="https://www.canal-u.tv/embed/"+video_title;return'
          '+'"+"
          "})},fallback:function(){"use strict";tarteaucitron.fallback(["canalu_player"],function(elem){return tarteaucitron.engage("canalu")})}};tarteaucitron.services.webtvnu={key:"webtvnu",type:"video",name:"WebTV Normandie Université",uri:"https://docs.google.com/document/d/1tpVclj4QBoAq1meSZgYrpNECwp7dbmb_IhICY3sTl9c/edit",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["webtvnu_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"WebTV Normandie Université iframe",frame_url="https://webtv.normandie-univ.fr/permalink/"+tarteaucitron.getElemAttr(x,"videoID")+"/iframe/",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";tarteaucitron.fallback(["webtvnu_player"],function(elem){return tarteaucitron.engage("webtvnu")})}};tarteaucitron.services.studizz={key:"studizz",type:"support",name:"Studizz Chatbot",uri:"https://group.studizz.fr/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.studizzToken===undefined){return}tarteaucitron.addScript("https://webchat.studizz.fr/webchat.js?token="+tarteaucitron.user.studizzToken)}};tarteaucitron.services.meteofrance={key:"meteofrance",type:"api",name:"Météo France",uri:"https://meteofrance.com/politique-de-confidentialite",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_meteofrance"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Météo France iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),insee=tarteaucitron.getElemAttr(x,"data-insee"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="meteofrance";tarteaucitron.fallback(["tac_meteofrance"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.m6meteo={key:"m6meteo",type:"api",name:"M6 Météo",uri:"https://gdpr.m6tech.net/charte-confidentialite-m6-web-meteocity.pdf",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_m6meteo"],function(x){var id=tarteaucitron.getElemAttr(x,"data-id");tarteaucitron.addScript("https://www.meteocity.com/widget/js/"+id);return''})},fallback:function(){"use strict";var id="m6meteo";tarteaucitron.fallback(["tac_m6meteo"],function(elem){return tarteaucitron.engage(id)})}};tarteaucitron.services.mtcaptcha={key:"mtcaptcha",type:"api",name:"MTcaptcha",uri:"https://www.mtcaptcha.com",readmoreLink:"https://www.mtcaptcha.com/faq-cookie-declaration",needConsent:true,cookies:["mtv1Pulse","mtv1ConfSum","mtv1Pong"],js:function(){if(tarteaucitron.user.mtcaptchaSitekey===undefined){return}window.mtcaptchaConfig={sitekey:tarteaucitron.user.mtcaptchaSitekey};tarteaucitron.addScript("https://service.mtcaptcha.com/mtcv1/client/mtcaptcha.min.js");tarteaucitron.addScript("https://service2.mtcaptcha.com/mtcv1/client/mtcaptcha2.min.js")}};tarteaucitron.services.archive={key:"archive",type:"video",name:"Internet Archive",uri:"https://archive.org/about/terms.php",needConsent:true,cookies:["abtest-identifier","donation-identifier"],js:function(){"use strict";tarteaucitron.fallback(["archive_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Internet Archive iframe",video_id=tarteaucitron.getElemAttr(x,"data-videoID"),video_width=tarteaucitron.getElemAttr(x,"data-width"),video_height=tarteaucitron.getElemAttr(x,"data-height"),styleAttr="",video_frame;if(video_id===undefined){return""}if(video_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(video_width)+";"}if(video_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(video_height)+";"}video_frame='';return video_frame})},fallback:function(){"use strict";var id="archive";tarteaucitron.fallback(["archive_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.gallica={key:"gallica",type:"other",name:"Gallica",uri:"https://gallica.bnf.fr/edit/und/conditions-dutilisation-des-contenus-de-gallica",needConsent:true,cookies:["dtCookie","dtLatC","dtPC","dtSa","rxVisitor","rxvt","xtvrn"],js:function(){"use strict";tarteaucitron.fallback(["gallica_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Gallica iframe",src=tarteaucitron.getElemAttr(x,"data-src"),style=tarteaucitron.getElemAttr(x,"data-style"),frame;if(src===undefined){return""}frame='';return frame})},fallback:function(){"use strict";var id="gallica";tarteaucitron.fallback(["gallica_player"],function(elem){elem.style=tarteaucitron.getElemAttr(elem,"data-style");return tarteaucitron.engage(id)})}};tarteaucitron.services.crisp={key:"crisp",type:"other",name:"Crisp Chat",uri:"https://help.crisp.chat/en/article/crisp-chatbox-cookie-ip-policy-1147xor/",needConsent:false,cookies:["crisp-client","__cfduid"],js:function(){"use strict";if(tarteaucitron.user.crispID===undefined){return}window.$crisp=[];window.CRISP_WEBSITE_ID=tarteaucitron.user.crispID;tarteaucitron.addScript("https://client.crisp.chat/l.js")}};tarteaucitron.services.microanalytics={key:"microanalytics",type:"analytic",name:"MicroAnalytic",uri:"https://microanalytics.io/page/privacy",needConsent:false,cookies:[],js:function(){"use strict";if(tarteaucitron.user.microanalyticsID===undefined){return}tarteaucitron.addScript("https://microanalytics.io/js/script.js",tarteaucitron.user.microanalyticsID,undefined,true,"data-host","https://microanalytics.io")}};tarteaucitron.services.facebookcustomerchat={key:"facebookcustomerchat",type:"social",name:"Facebook (Customer Chat)",uri:"https://www.facebook.com/policies/cookies/",needConsent:true,cookies:["act","c_user","datr","dpr","presence","sb","wd","xs","/tr"],js:function(){"use strict";if(tarteaucitron.user.facebookChatID===undefined){return}tarteaucitron.fallback(["fb-customerchat"],"");window.fbAsyncInit=function(){FB.init({appId:tarteaucitron.user.facebookChatID,autoLogAppEvents:!0,xfbml:!0,version:"v3.0"})};tarteaucitron.addScript("https://connect.facebook.net/"+tarteaucitron.getLocale()+"/sdk/xfbml.customerchat.js","facebook-jssdk")},fallback:function(){"use strict";var id="facebookcustomerchat";tarteaucitron.fallback(["fb-customerchat"],tarteaucitron.engage(id))}};tarteaucitron.services.weborama={key:"weborama",type:"analytic",name:"Weborama",uri:"https://weborama.com/faq-cnil-avril-2021/",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://cstatic.weborama.fr/js/advertiserv2/adperf_conversion.js")}};tarteaucitron.services.tiktok={key:"tiktok",type:"analytic",name:"Tiktok",uri:"https://www.tiktok.com/legal/tiktok-website-cookies-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.tiktokId===undefined){return}!function(w,d,t){w.TiktokAnalyticsObject=t;var ttq=w[t]=w[t]||[];ttq.methods=["page","track","identify","instances","debug","on","off","once","ready","alias","group","enableCookie","disableCookie"],ttq.setAndDefer=function(t,e){t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}};for(var i=0;i"})},fallback:function(){"use strict";var id="iframe";tarteaucitron.fallback(["tac_iframe"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.madmetrics={key:"madmetrics",type:"ads",name:"MadMetrics",uri:"https://www.keyade.com/fr/politique-de-confidentialite/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.madmetricsHostname===undefined){return}tarteaucitron.addScript("https://static.madmetrics.com/ktck_seo_acd_pv-min.js","",function(){var clientId=tarteaucitron.user.madmetricsClientId,siteId=tarteaucitron.user.madmetricsSiteId,directId=tarteaucitron.user.madmetricsDirectId,referalId=tarteaucitron.user.madmetricsReferalId;var _kTck=new KaTracker(clientId,siteId,directId,referalId);_kTck.setBridge("https://"+tarteaucitron.user.madmetricsHostname+"/k_redirect_md.php");_kTck.track()})}};tarteaucitron.services.fillout={key:"fillout",type:"other",name:"Fillout",uri:"https://www.fillout.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_fillout"],"");tarteaucitron.addScript("https://server.fillout.com/embed/v1/")},fallback:function(){"use strict";var id="fillout";tarteaucitron.fallback(["tac_fillout"],function(elem){return tarteaucitron.engage(id)})}};tarteaucitron.services.kompass={key:"kompass",type:"analytic",name:"Kompass",uri:"https://fr.kompass.com/l/cookie-use-policy",needConsent:true,cookies:["kompass","gq_lead","_first_pageview","eqy_sessionid","eqy_siteid","cluid","eqy_company","gq_utm","_jsuid"],js:function(){"use strict";if(tarteaucitron.user.kompassId===undefined){return}tarteaucitron.addScript("https://fr.kompass.com/leads/script.js?id="+tarteaucitron.user.kompassId)}};tarteaucitron.services.goldenbees={key:"goldenbees",type:"ads",name:"Golden Bees",uri:"https://www.goldenbees.fr/politique-confidentialite",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.goldenbeesId===undefined){return}tarteaucitron.addScript("https://cdn.goldenbees.fr/proxy?url=http%3A%2F%2Fstatic.goldenbees.fr%2Fcdn%2Fjs%2Fgtag%2Fgoldentag-min.js&attachment=0","",function(){window.gbTag=GbTagBuilder.build(tarteaucitron.user.goldenbeesId);window.gbTag.fire()})}};tarteaucitron.services.weply={key:"weply",type:"support",name:"Weply",uri:"https://weply.chat/",needConsent:true,cookies:["weply.analytics","logglytrackingsession"],js:function(){"use strict";if(tarteaucitron.user.weplyId===undefined){return}tarteaucitron.addScript("https://app.weply.chat/widget/"+tarteaucitron.user.weplyId)}};tarteaucitron.services.skaze={key:"skaze",type:"ads",name:"Skaze",uri:"https://www.skaze.com/fr/politique/politique-de-confidentialite/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.skazeIdentifier===undefined){return}window.skaze=window.skaze||{};tarteaucitron.addScript("https://events.sk.ht/"+tarteaucitron.user.skazeIdentifier+"/lib.js","",function(){skaze.cmd=skaze.cmd||[];skaze.cmd.push(function(){skaze.init({siteIdentifier:tarteaucitron.user.skazeIdentifier});if(typeof tarteaucitron.user.skazeMore==="function"){tarteaucitron.user.skazeMore()}})})}};tarteaucitron.services.dialoginsight={key:"dialoginsight",type:"support",name:"Dialog Insight",uri:"https://www.dialoginsight.com/politique-de-confidentialite/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.dialogInsightId===undefined){return}tarteaucitron.addScript("https://t.ofsys.com/js/Journey/1/"+tarteaucitron.user.dialogInsightId+"/DI.Journey-min.js")}};tarteaucitron.services.markerio={key:"markerio",type:"support",name:"Marker.io",uri:"https://marker.io/cookie-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.markerioProjectId===undefined){return}window.markerConfig={project:tarteaucitron.user.markerioProjectId,source:"snippet"};!function(e,r,a){if(!e.__Marker){e.__Marker={};var t=[],n={__cs:t};["show","hide","isVisible","capture","cancelCapture","unload","reload","isExtensionInstalled","setReporter","setCustomData","on","off"].forEach(function(e){n[e]=function(){var r=Array.prototype.slice.call(arguments);r.unshift(e),t.push(r)}}),e.Marker=n;var s=r.createElement("script");s.async=1,s.src="https://edge.marker.io/latest/shim.js";var i=r.getElementsByTagName("script")[0];i.parentNode.insertBefore(s,i)}}(window,document)}};tarteaucitron.services.tolkaigenii={key:"tolkaigenii",type:"support",name:"Tolk.ai Genii",uri:"https://www.tolk.ai/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.tolkaiGeniiProject===undefined){return}tarteaucitron.addScript("https://genii-script.tolk.ai/lightchat.js","lightchat-bot","","","project-id",tarteaucitron.user.tolkaiGeniiProject)}};tarteaucitron.services.seamlessaccess={key:"seamlessaccess",type:"api",name:"Seamlessaccess",uri:"https://seamlessaccess.org/about/trust/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.seamlessaccessInitiator===undefined){return}var uniqIds=[];tarteaucitron.fallback(["seamlessaccess_button"],function(x){var uniqId=tarteaucitron.getElemAttr(x,"id");if(uniqId===""){uniqId="_"+Math.random().toString(36).substr(2,9);x.setAttribute("id",uniqId)}uniqIds.push(uniqId);x.innerHTML=""},true);tarteaucitron.addScript("//service.seamlessaccess.org/thiss.js","seamlessaccessjs",function(){for(var i=0;i'})},fallback:function(){"use strict";var id="twitch";tarteaucitron.fallback(["twitch_player"],tarteaucitron.engage(id))}};tarteaucitron.services.eskimi={key:"eskimi",type:"ads",name:"Eskimi",uri:"https://fr.eskimi.com/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.eskimiInit===undefined){return}window.___esk=window.esk=function(){window.___esk.callMethod?window.___esk.callMethod.apply(window.___esk,arguments):window.___esk.queue.push(arguments)};window.___esk.push=window.___esk;window.___esk.loaded=true;window.___esk.queue=[];tarteaucitron.addScript("https://dsp-media.eskimi.com/assets/js/e/gtr.min.js","",function(){esk("init",tarteaucitron.user.eskimiInit)})}};tarteaucitron.services.sharethissticky={key:"sharethissticky",type:"social",name:"ShareThis Sticky",uri:"https://sharethis.com/fr/privacy/",needConsent:true,cookies:["_stid","_stidv","pubconsent"],js:function(){"use strict";if(tarteaucitron.user.sharethisStickyProperty===undefined){return}tarteaucitron.addScript("https://platform-api.sharethis.com/js/sharethis.js#property="+tarteaucitron.user.sharethisStickyProperty+"&product=sticky-share-buttons")}};tarteaucitron.services.pianoanalytics={key:"pianoanalytics",type:"analytic",name:"Piano Analytics",uri:"https://piano.io/privacy-policy/",needConsent:true,cookies:["_pcid","_pctx","_pctx","pa_user","pa_privacy"],js:function(){"use strict";if(tarteaucitron.user.pianoCollectDomain===undefined||tarteaucitron.user.pianoSite===undefined){return}tarteaucitron.addScript("https://tag.aticdn.net/piano-analytics.js","",function(){pa.setConfigurations({site:tarteaucitron.user.pianoSite,collectDomain:tarteaucitron.user.pianoCollectDomain});if(tarteaucitron.user.pianoSendData!==false){pa.sendEvent("page.display",{page:document.title})}})}};tarteaucitron.services.actistat={key:"actistat",type:"analytic",name:"ActiSTAT",uri:"https://actigraph.com/actistat",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.actistatId===undefined){return}tarteaucitron.addScript("https://actistat.fr/umami.js","","","","data-website-id",tarteaucitron.user.actistatId)}};tarteaucitron.services.outbrainamplify={key:"outbrainamplify",type:"ads",name:"Outbrain Amplify",uri:"https://www.outbrain.com/privacy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.outbrainamplifyId===undefined){return}var OB_ADV_ID=tarteaucitron.user.outbrainamplifyId;if(window.obApi){var toArray=function(object){return Object.prototype.toString.call(object)==="[object Array]"?object:[object]};window.obApi.marketerId=toArray(_window.obApi.marketerId).concat(toArray(OB_ADV_ID));return}var api=window.obApi=function(){api.dispatch?api.dispatch.apply(api,arguments):api.queue.push(arguments)};api.version="1.1";api.loaded=true;api.marketerId=OB_ADV_ID;api.queue=[];tarteaucitron.addScript("https://amplify.outbrain.com/cp/obtp.js","",function(){obApi("track","PAGE_VIEW")})}};tarteaucitron.services.playplay={key:"playplay",type:"video",name:"PlayPlay",uri:"https://playplay.com/fr/confidentialite",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_playplay"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Playplay iframe",id=tarteaucitron.getElemAttr(x,"data-id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var playURL="https://playplay.com/app/embed-video/"+id;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="playplay";tarteaucitron.fallback(["tac_playplay"],function(elem){return tarteaucitron.engage(id)})}};tarteaucitron.services.adobeworkspace={key:"adobeworkspace",type:"analytic",name:"Adobe - Analysis Workspace",uri:"https://www.adobe.com/privacy/policy.html",needConsent:true,cookies:["s_ecid","s_cc","s_sq","s_vi","s_fid"],js:function(){"use strict";if(tarteaucitron.user.adobeworkspaceId1===undefined||tarteaucitron.user.adobeworkspaceId2===undefined||tarteaucitron.user.adobeworkspaceId3===undefined){return}tarteaucitron.addScript("https://assets.adobedtm.com/"+tarteaucitron.user.adobeworkspaceId1+"/"+tarteaucitron.user.adobeworkspaceId2+"/launch-"+tarteaucitron.user.adobeworkspaceId3+".min.js")}};tarteaucitron.services.zohopagesense={key:"zohopagesense",type:"analytic",name:"Zoho PageSense",uri:"https://www.zoho.com/pagesense/cookie-policy.html",needConsent:true,cookies:["zab_g_","zabUserID","zabVisitID","zabSplit","zabBucket","zabHMBucket","zpsfa_","zfa","zsr","zabme","zsd","ps_payloadSeqId","zabPZBucket","zPersonalization","zia_","zpc","zps_permission_status","zps-tgr-dts","zpspolls_","zpsPollsBucket","zpspb","zpsPopupBucket","zpssr","zab_g_","zab_","zPersonalization"],js:function(){"use strict";if(tarteaucitron.user.zohoPageSenseProjectId===undefined||tarteaucitron.user.zohoPageSenseScriptHash===undefined){return}tarteaucitron.addScript("https://cdn-eu.pagesense.io/js/"+tarteaucitron.user.zohoPageSenseProjectId+"/"+tarteaucitron.user.zohoPageSenseScriptHash+".js")}};tarteaucitron.services.leadinfo={key:"leadinfo",type:"analytic",name:"Leadinfo",uri:"https://www.leadinfo.com/en/privacy/",needConsent:true,cookies:["_li_id","_li_ses"],js:function(){"use strict";if(tarteaucitron.user.leadinfoId===undefined){return}window.GlobalLeadinfoNamespace=window.GlobalLeadinfoNamespace||[];window.GlobalLeadinfoNamespace.push("leadinfo");window["leadinfo"]=function(){(window["leadinfo"].q=window["leadinfo"].q||[]).push(arguments)};window["leadinfo"].t=window["leadinfo"].t||tarteaucitron.user.leadinfoId;window["leadinfo"].q=window["leadinfo"].q||[];tarteaucitron.addScript("https://cdn.leadinfo.net/ping.js")}};tarteaucitron.services.force24={key:"force24",type:"analytic",name:"Force24",uri:"https://support.force24.co.uk/support/solutions/articles/79000128057-cookie-policies",needConsent:true,cookies:["F24_autoID","F24_personID"],js:function(){"use strict";if(tarteaucitron.user.force24trackingId===undefined||tarteaucitron.user.force24clientId===undefined){return}window.Force24Object="f24",window["f24"]=window["f24"]||function(){window["f24"].q=window["f24"].q||[],window["f24"].q.push(arguments)},window["f24"].l=1*new Date;tarteaucitron.addScript("https://static.websites.data-crypt.com/scripts/activity/v3/inject-v3.min.js");f24("config","set_tracking_id",tarteaucitron.user.force24trackingId);f24("config","set_client_id",tarteaucitron.user.force24clientId)}};tarteaucitron.services.tiktokvideo={key:"tiktokvideo",type:"video",name:"Tiktok Video",uri:"https://www.tiktok.com/legal/page/eea/privacy-policy/en",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://www.tiktok.com/embed.js")},fallback:function(){"use strict";var id="tiktokvideo";tarteaucitron.fallback(["tiktok-embed"],function(elem){return tarteaucitron.engage(id)})}};tarteaucitron.services.shinystat={key:"shinystat",type:"analytic",name:"Shinystat",uri:"https://www.shinystat.com/en/opt-out.html",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.shinystatUser===undefined){return}tarteaucitron.addScript("https://codice.shinystat.com/cgi-bin/getcod.cgi?USER="+tarteaucitron.user.shinystatUser)}};tarteaucitron.services.activecampaignvgo={key:"activecampaignvgo",type:"other",name:"Active Campaign",uri:"https://www.activecampaign.com/legal/privacy-policy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.activecampaignAccount===undefined){return}window.visitorGlobalObjectAlias="vgo";window[window.visitorGlobalObjectAlias]=window[window.visitorGlobalObjectAlias]||function(){(window[window.visitorGlobalObjectAlias].q=window[window.visitorGlobalObjectAlias].q||[]).push(arguments)};window[window.visitorGlobalObjectAlias].l=(new Date).getTime();tarteaucitron.addScript("https://diffuser-cdn.app-us1.com/diffuser/diffuser.js","",function(){vgo("setAccount",tarteaucitron.user.activecampaignAccount);vgo("setTrackByDefault",true);vgo("process")})}};tarteaucitron.services.sendinblue={key:"sendinblue",type:"other",name:"Brevo (formerly sendinblue)",uri:"https://www.brevo.com/fr/legal/cookies/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.sendinblueKey===undefined){return}window.sib={equeue:[],client_key:tarteaucitron.user.sendinblueKey};window.sendinblue={};for(var j=["track","identify","trackLink","page"],i=0;i>>=0);(function(e,a,s,y){s[a]=s[a]||function(){(s[y]=s[y]||[]).push(arguments);s[y].eah=e}})(e,a,s,y);i=new Date/1e7|0;o.ea=y;y=i%26;o.async=1;o.src="//"+e+"/"+String.fromCharCode(97+y,122-y,65+y)+i%1e3+".js?2";s=v.getElementsByTagName(k)[0];s.parentNode.insertBefore(o,s)})(tarteaucitron.user.eulerianHost,"EA_push");EA_push()}};tarteaucitron.services.posthog={key:"posthog",type:"other",name:"Posthog",uri:"https://posthog.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.posthogApiKey===undefined||tarteaucitron.user.posthogHost===undefined){return}!function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="capture identify alias people.set people.set_once set_config register register_once unregister opt_out_capturing has_opted_out_capturing opt_in_capturing reset isFeatureEnabled onFeatureFlags".split(" "),n=0;n'})},fallback:function(){"use strict";var id="kwanko";tarteaucitron.fallback(["tac_kwanko"],function(elem){return tarteaucitron.engage(id)})}};tarteaucitron.services.leadforensics={key:"leadforensics",type:"ads",name:"Lead Forensics",uri:"https://www.leadforensics.com/cookie-policy/",needConsent:true,cookies:["ifuuid"],js:function(){"use strict";if(tarteaucitron.user.leadforensicsId===undefined){return}tarteaucitron.addScript("https://secure.team8save.com/js/sc/"+tarteaucitron.user.leadforensicsId+".js")}};tarteaucitron.services.ubib={key:"ubib",type:"support",name:"Ubib Chatbot",uri:"https://ubib.libanswers.com/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.ubibId===undefined||tarteaucitron.user.ubibHash===undefined){return}tarteaucitron.addScript("https://"+tarteaucitron.user.ubibId+".libanswers.com/load_chat.php?hash="+tarteaucitron.user.ubibHash)}};tarteaucitron.services.wysistathightrack={key:"wysistathightrack",type:"analytic",name:"Wysistat (privacy by design)",uri:"https://www.wysistat.net/webanalytics/exemption-cnil/",needConsent:false,cookies:["wysistat"],js:function(){"use strict";if(tarteaucitron.user.wysistatNom===undefined){return}window._wsq=window._wsq||[];window._wsq.push(["_setNom",tarteaucitron.user.wysistatNom]);window._wsq.push(["_wysistat"]);tarteaucitron.addScript("https://www.wysistat.com/ws.jsa")}};tarteaucitron.services.robofabrica={key:"robofabrica",type:"support",name:"Robo Fabrica Chatbot",uri:"https://robofabrica.tech/charte-vie-privee/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.robofabricaUuid===undefined){return}tarteaucitron.addScript("https://app.robofabrica.tech/widget/script","inceptive-cw-script",function(){document.getElementById("inceptive-cw-script").setAttribute("unique-url",tarteaucitron.user.robofabricaUuid);document.getElementById("inceptive-cw-script").setAttribute("label","start");document.getElementById("inceptive-cw-script").setAttribute("launch-btn-id","inceptive-cw-launch");document.getElementById("inceptive-cw-script").setAttribute("chat-server-url","https://app.robofabrica.tech:443")})}};tarteaucitron.services.trustpilot={key:"trustpilot",type:"other",name:"Trustpilot",uri:"https://fr.legal.trustpilot.com/for-reviewers/end-user-privacy-terms",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["trustpilot-widget"],"");tarteaucitron.addScript("https://widget.trustpilot.com/bootstrap/v5/tp.widget.sync.bootstrap.min.js")},fallback:function(){"use strict";var id="trustpilot";tarteaucitron.fallback(["trustpilot-widget"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-style-width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-style-height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.snapchat={key:"snapchat",type:"analytic",name:"Snapchat",uri:"https://snap.com/fr-FR/privacy/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.snapchatId===undefined){return}var a=window.snaptr=function(){a.handleRequest?a.handleRequest.apply(a,arguments):a.queue.push(arguments)};a.queue=[];if(tarteaucitron.user.snapchatEmail===undefined){window.snaptr("init",tarteaucitron.user.snapchatId)}else{window.snaptr("init",tarteaucitron.user.snapchatId,{user_email:tarteaucitron.user.snapchatEmail})}window.snaptr("track","PAGE_VIEW");tarteaucitron.addScript("https://sc-static.net/scevent.min.js");if(typeof tarteaucitron.user.snapchatMore==="function"){tarteaucitron.user.snapchatMore()}}};tarteaucitron.services.antvoice={key:"antvoice",type:"ads",name:"antvoice",uri:"https://www.antvoice.com/fr/privacy-policy/",needConsent:true,cookies:["antvoice"],js:function(){"use strict";if(tarteaucitron.user.antvoiceId===undefined){return}window.avDataLayer=window.avDataLayer||[];window.avtag=window.avtag||function(_cmd,_p){window.avDataLayer.push({cmd:_cmd,p:_p})};window.avtag("setConsent",{consent:true});window.avtag("init",{id:tarteaucitron.user.antvoiceId});tarteaucitron.addScript("https://static.avads.net/avtag.min.js")}};tarteaucitron.services.plausible={key:"plausible",type:"analytic",name:"Plausible",uri:"https://plausible.io/privacy",needConsent:false,cookies:[],js:function(){"use strict";if(tarteaucitron.user.plausibleDomain===undefined){return}if(tarteaucitron.user.plausibleEndpoint===undefined){tarteaucitron.user.plausibleEndpoint="plausible.io"}tarteaucitron.addScript("https://"+tarteaucitron.user.plausibleEndpoint+"/js/script.js","","","","data-domain",tarteaucitron.user.plausibleDomain)}};tarteaucitron.services.videas={key:"videas",type:"video",name:"Videas",uri:"https://videas.fr/fr/legal",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_videas"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Videas iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),id=tarteaucitron.getElemAttr(x,"data-id"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="videas";tarteaucitron.fallback(["tac_videas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.myfeelback={key:"myfeelback",type:"api",name:"MyFeelBack (Skeepers)",uri:"https://help.myfeelback.com/fr/quels-sont-les-cookies-d%C3%A9pos%C3%A9s-par-un-dispositif-de-collecte-myfeelback",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.myfeelbackId===undefined){return}window._Mfb_useCookie=true;window._Mfb_ud={var1:undefined,var2:undefined,varN:undefined,_context:{lang:undefined,privacyMode:false,_page:{url:location.pathname,storageDuration:30}}};tarteaucitron.addScript("https://actorssl-5637.kxcdn.com/actor/"+tarteaucitron.user.myfeelbackId+"/action","MFBActor")}};tarteaucitron.services.arcio={key:"arcio",type:"api",name:"Arc.io",uri:"https://arc.io/about",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.arcId===undefined){return}tarteaucitron.addScript("https://arc.io/widget.min.js#"+tarteaucitron.user.arcId)}};tarteaucitron.services.doubleclick={key:"doubleclick",type:"ads",name:"DoubleClick",uri:"https://support.google.com/admanager/answer/2839090",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["doubleclick_container"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Doubleclick iframe",id1=tarteaucitron.getElemAttr(x,"data-id1"),id2=tarteaucitron.getElemAttr(x,"data-id2"),type=tarteaucitron.getElemAttr(x,"data-type"),cat=tarteaucitron.getElemAttr(x,"data-cat"),item=tarteaucitron.getElemAttr(x,"data-item"),quantity=tarteaucitron.getElemAttr(x,"data-quantity"),price=tarteaucitron.getElemAttr(x,"data-price"),postage=tarteaucitron.getElemAttr(x,"data-postage"),seller=tarteaucitron.getElemAttr(x,"data-seller"),gdpr=tarteaucitron.getElemAttr(x,"data-gdpr"),gdpr_consent=tarteaucitron.getElemAttr(x,"data-gdpr-consent"),ord=tarteaucitron.getElemAttr(x,"data-ord"),num=tarteaucitron.getElemAttr(x,"data-num");return''})}};tarteaucitron.services.userpilot={key:"userpilot",type:"analytic",name:"UserPilot",uri:"https://userpilot.com/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.userpilotToken===undefined){return}window.userpilotSettings={token:tarteaucitron.user.userpilotToken};tarteaucitron.addScript("https://js.userpilot.io/sdk/latest.js")}};tarteaucitron.services.piwikpro={key:"piwikpro",type:"analytic",name:"Piwik Pro",uri:"https://piwik.pro/privacy-policy/",needConsent:true,cookies:["_pk_ref","_pk_cvar","_pk_id","_pk_ses","_pk_hsr","piwik_ignore","_pk_uid"],js:function(){"use strict";if(tarteaucitron.user.piwikProId===undefined||tarteaucitron.user.piwikProContainer===undefined){return}window["dataLayer"]=window["dataLayer"]||[],window["dataLayer"].push({start:(new Date).getTime(),event:"stg.start"});function stgCreateCookie(a,b,c){var d="";if(c){var e=new Date;e.setTime(e.getTime()+24*c*60*60*1e3),d="; expires="+e.toUTCString()}document.cookie=a+"="+b+d+"; path=/"}var isStgDebug=(window.location.href.match("stg_debug")||document.cookie.match("stg_debug"))&&!window.location.href.match("stg_disable_debug");stgCreateCookie("stg_debug",isStgDebug?1:"",isStgDebug?14:-1);var qP=[];var qPString=qP.length>0?"?"+qP.join("&"):"";tarteaucitron.addScript("https://"+tarteaucitron.user.piwikProContainer+".containers.piwik.pro/"+tarteaucitron.user.piwikProId+".js"+qPString);!function(a,n,i){a[n]=a[n]||{};for(var c=0;c
          '});for(i=0;i"}},fallback:function(){"use strict";var id="xandrsegment";tarteaucitron.fallback(["xandrsegment-canvas"],tarteaucitron.engage(id))}};tarteaucitron.services.xandrconversion={key:"xandrconversion",type:"ads",name:"Xandr (Conversion)",uri:"https://www.xandr.com/privacy/cookie-policy/",needConsent:true,cookies:["uuid2","uids","sess","icu","anj","usersync"],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["xandrconversion-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i"}},fallback:function(){"use strict";var id="xandrconversion";tarteaucitron.fallback(["xandrconversion-canvas"],tarteaucitron.engage(id))}};tarteaucitron.services.helloasso={key:"helloasso",type:"api",name:"HelloAsso",uri:"https://www.helloasso.com/confidentialite",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_helloasso"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"HelloAsso iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url=tarteaucitron.getElemAttr(x,"data-url"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="helloasso";tarteaucitron.fallback(["tac_helloasso"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.podcloud={key:"podcloud",type:"video",name:"podCloud",uri:"https://podcloud.fr/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_podcloud"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"podCloud iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url=tarteaucitron.getElemAttr(x,"data-url"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="podcloud";tarteaucitron.fallback(["tac_podcloud"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.facebookpost={key:"facebookpost",type:"social",name:"Facebook (post)",uri:"https://www.facebook.com/policy.php",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_facebookpost"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Facebook iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url=tarteaucitron.getElemAttr(x,"data-url"),appId=tarteaucitron.getElemAttr(x,"data-appid"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen"),showText=tarteaucitron.getElemAttr(x,"data-show-text");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="facebookpost";tarteaucitron.fallback(["tac_facebookpost"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.amplitude={key:"amplitude",type:"analytic",name:"Amplitude",uri:"https://amplitude.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.amplitude===undefined){return}tarteaucitron.addScript("https://cdn.amplitude.com/libs/amplitude-5.8.0-min.gz.js","",function(){window.amplitude={_q:[],_iq:{}};function s(e,t){e.prototype[t]=function(){this._q.push([t].concat(Array.prototype.slice.call(arguments,0)));return this}}var o=function(){this._q=[];return this};var a=["add","append","clearAll","prepend","set","setOnce","unset"];for(var u=0;u';return iframe})},fallback:function(){"use strict";var id="amazon";tarteaucitron.fallback(["amazon_product"],tarteaucitron.engage(id))}};tarteaucitron.services.calameo={key:"calameo",type:"video",name:"Calameo",uri:"https://fr.calameo.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["calameo-canvas"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Calameo iframe",id=tarteaucitron.getElemAttr(x,"data-id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url="//v.calameo.com/?bkcode="+id,allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="calameo";tarteaucitron.fallback(["calameo-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.calameolibrary={key:"calameolibrary",type:"video",name:"Calameo Library",uri:"https://fr.calameo.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["calameolibrary-canvas"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Calameo iframe",id=tarteaucitron.getElemAttr(x,"data-id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url="//v.calameo.com/library/?type=subscription&id="+id,allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="calameolibrary";tarteaucitron.fallback(["calameolibrary-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.clicky={key:"clicky",type:"analytic",name:"Clicky",uri:"https://clicky.com/terms",needConsent:true,cookies:["_jsuid","_eventqueue","_referrer_og","_utm_og","_first_pageview","clicky_olark","no_trackyy_"+tarteaucitron.user.clickyId,"unpoco_"+tarteaucitron.user.clickyId,"heatmaps_g2g_"+tarteaucitron.user.clickyId],js:function(){"use strict";if(tarteaucitron.user.clickyId===undefined){return}tarteaucitron.addScript("//static.getclicky.com/js","",function(){if(typeof clicky.init==="function"){clicky.init(tarteaucitron.user.clickyId)}if(typeof tarteaucitron.user.clickyMore==="function"){tarteaucitron.user.clickyMore()}})}};tarteaucitron.services.clicmanager={key:"clicmanager",type:"ads",name:"Clicmanager",uri:"https://www.clicmanager.fr/infos_legales.php",needConsent:true,cookies:[],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["clicmanager-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i'});for(i=0;i";return video_frame})},fallback:function(){"use strict";var id="artetv";tarteaucitron.fallback(["artetv_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.dailymotion={key:"dailymotion",type:"video",name:"Dailymotion",uri:"https://www.dailymotion.com/legal/privacy",needConsent:true,cookies:["ts","dmvk","hist","v1st","s_vi"],js:function(){"use strict";tarteaucitron.fallback(["dailymotion_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Dailymotion iframe",video_id=tarteaucitron.getElemAttr(x,"videoID"),video_width=tarteaucitron.getElemAttr(x,"width"),video_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",video_frame,embed_type=tarteaucitron.getElemAttr(x,"embedType"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen"),showinfo=tarteaucitron.getElemAttr(x,"showinfo"),autoplay=tarteaucitron.getElemAttr(x,"autoplay"),api=tarteaucitron.getElemAttr(x,"api"),params="info="+showinfo+"&autoPlay="+autoplay+"&api="+api;if(video_id===""){return""}if(video_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(video_width)+";"}if(video_height!==undefined){styleAttr+="height:"+tarteaucitron.getStyleSize(video_height)+";"}if(embed_type===""||!["video","playlist"].includes(embed_type)){embed_type="video"}video_frame='";return video_frame})},fallback:function(){"use strict";var id="dailymotion";tarteaucitron.fallback(["dailymotion_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.datingaffiliation={key:"datingaffiliation",type:"ads",name:"Dating Affiliation",uri:"https://www.dating-affiliation.com/conditions-generales.php",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["datingaffiliation-canvas"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Dating Affiliation iframe",comfrom=tarteaucitron.getElemAttr(x,"data-comfrom"),r=tarteaucitron.getElemAttr(x,"data-r"),p=tarteaucitron.getElemAttr(x,"data-p"),cf0=tarteaucitron.getElemAttr(x,"data-cf0"),langue=tarteaucitron.getElemAttr(x,"data-langue"),forward_affiliate=tarteaucitron.getElemAttr(x,"data-forwardAffiliate"),cf2=tarteaucitron.getElemAttr(x,"data-cf2"),cfsa2=tarteaucitron.getElemAttr(x,"data-cfsa2"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url="https://www.tools-affil2.com/rotaban/ban.php?"+comfrom;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="datingaffiliation";tarteaucitron.fallback(["datingaffiliation-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.datingaffiliationpopup={key:"datingaffiliationpopup",type:"ads",name:"Dating Affiliation (Pop Up)",uri:"https://www.dating-affiliation.com/conditions-generales.php",needConsent:true,cookies:["__utma","__utmb","__utmc","__utmt_Tools","__utmv","__utmz","_ga","_gat","_gat_UA-65072040-17","__da-pu-xflirt-ID-pc-o169"],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["datingaffiliationpopup-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i";return deezer_frame})},fallback:function(){"use strict";var id="deezer";tarteaucitron.fallback(["deezer_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.leadforensicsold={key:"leadforensicsold",type:"analytic",name:"LeadForensics",uri:"https://www.leadforensics.com/privacy-policy/",needConsent:true,cookies:["trackalyzer"],js:function(){"use strict";if(tarteaucitron.user.leadforensicsSf14gv===undefined||tarteaucitron.user.leadforensicsIidentifier===undefined){return}window.sf14gv=tarteaucitron.user.leadforensicsSf14gv;(function(){var sf14g=document.createElement("script");sf14g.async=true;sf14g.src=("https:"==document.location.protocol?"https://":"http://")+"t.sf14g.com/sf14g.js";var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(sf14g,s)})();tarteaucitron.addScript("//secure.leadforensics.com/js/"+tarteaucitron.user.leadforensicsIidentifier+".js")}};tarteaucitron.services.disqus={key:"disqus",type:"comment",name:"Disqus",uri:"https://help.disqus.com/customer/portal/articles/466259-privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.disqusShortname===undefined){return}tarteaucitron.addScript("//"+tarteaucitron.user.disqusShortname+".disqus.com/embed.js");tarteaucitron.addScript("//"+tarteaucitron.user.disqusShortname+".disqus.com/count.js")},fallback:function(){"use strict";var id="disqus";if(document.getElementById("disqus_thread")){document.getElementById("disqus_thread").innerHTML=tarteaucitron.engage(id)}}};tarteaucitron.services.ekomi={key:"ekomi",type:"social",name:"eKomi",uri:"https://www.ekomi-us.com/us/privacy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.ekomiCertId===undefined){return}window.eKomiIntegrationConfig=[{certId:tarteaucitron.user.ekomiCertId}];tarteaucitron.addScript("//connect.ekomi.de/integration_1410173009/"+tarteaucitron.user.ekomiCertId+".js")}};tarteaucitron.services.etracker={key:"etracker",type:"analytic",name:"eTracker",uri:"https://www.etracker.com/en/data-protection.html",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.etracker===undefined){return}tarteaucitron.addScript("//static.etracker.com/code/e.js","_etLoader",function(){},true,"data-secure-code",tarteaucitron.user.etracker)}};tarteaucitron.services.facebook={key:"facebook",type:"social",name:"Facebook",uri:"https://www.facebook.com/policy.php",needConsent:true,cookies:["xs","sb","fr","datr","dpr","c_user"],js:function(){"use strict";tarteaucitron.fallback(["fb-post","fb-follow","fb-activity","fb-send","fb-share-button","fb-like","fb-video"],"");tarteaucitron.addScript("//connect.facebook.net/"+tarteaucitron.getLocale()+"/sdk.js#xfbml=1&version=v2.0","facebook-jssdk");if(tarteaucitron.isAjax===true){if(typeof FB!=="undefined"){FB.XFBML.parse()}}},fallback:function(){"use strict";var id="facebook";tarteaucitron.fallback(["fb-post","fb-follow","fb-activity","fb-send","fb-share-button","fb-like","fb-video"],tarteaucitron.engage(id))}};tarteaucitron.services.facebooklikebox={key:"facebooklikebox",type:"social",name:"Facebook (like box)",uri:"https://www.facebook.com/policy.php",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["fb-like-box","fb-page"],"");tarteaucitron.addScript("//connect.facebook.net/"+tarteaucitron.getLocale()+"/sdk.js#xfbml=1&version=v2.3","facebook-jssdk");if(tarteaucitron.isAjax===true){if(typeof FB!=="undefined"){FB.XFBML.parse()}}},fallback:function(){"use strict";var id="facebooklikebox";tarteaucitron.fallback(["fb-like-box","fb-page"],tarteaucitron.engage(id))}};tarteaucitron.services.facebookcomment={key:"facebookcomment",type:"comment",name:"Facebook (commentaire)",uri:"https://www.facebook.com/policy.php",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["fb-comments"],"");tarteaucitron.addScript("//connect.facebook.net/"+tarteaucitron.getLocale()+"/sdk.js#xfbml=1&version=v2.0","facebook-jssdk");if(tarteaucitron.isAjax===true){if(typeof FB!=="undefined"){FB.XFBML.parse()}}},fallback:function(){"use strict";var id="facebookcomment";tarteaucitron.fallback(["fb-comments"],tarteaucitron.engage(id))}};tarteaucitron.services.ferank={key:"ferank",type:"analytic",name:"FERank",uri:"https://www.ferank.fr/respect-vie-privee/#mesureaudience",needConsent:false,cookies:[],js:function(){"use strict";tarteaucitron.addScript("//static.ferank.fr/pixel.js","",function(){if(typeof tarteaucitron.user.ferankMore==="function"){tarteaucitron.user.ferankMore()}})}};tarteaucitron.services.pingdom={key:"pingdom",type:"api",name:"Pingdom",uri:"https://www.solarwinds.com/general-data-protection-regulation-cloud",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.pingdomId===undefined){return}window._prum=[["id",tarteaucitron.user.pingdomId],["mark","firstbyte",(new Date).getTime()]];tarteaucitron.addScript("https://rum-static.pingdom.net/prum.min.js")}};tarteaucitron.services.simpleanalytics={key:"simpleanalytics",type:"analytic",name:"Simple Analytics",uri:"https://docs.simpleanalytics.com/what-we-collect",needConsent:false,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://scripts.simpleanalyticscdn.com/latest.js")}};tarteaucitron.services.stonly={key:"stonly",type:"api",name:"Stonly (privacy by design)",uri:"https://trust.stonly.com/",needConsent:false,cookies:[],js:function(){"use strict";if(tarteaucitron.user.stonlyId===undefined){return}window.STONLY_WID=tarteaucitron.user.stonlyId;window.StonlyWidget||((window.w=window.StonlyWidget=function(){window.w._api?window.w._api.apply(window.w,arguments):window.w.queue.push(arguments)}).queue=[]);tarteaucitron.addScript("https://stonly.com/js/widget/v2/stonly-widget.js?v="+Date.now())}};tarteaucitron.services.ferankpub={key:"ferankpub",type:"ads",name:"FERank (pub)",uri:"https://www.ferank.fr/respect-vie-privee/#regiepublicitaire",needConsent:false,cookies:[],js:function(){"use strict";tarteaucitron.addScript("//static.ferank.fr/publicite.async.js");if(tarteaucitron.isAjax===true){if(typeof ferankReady==="function"){ferankReady()}}},fallback:function(){"use strict";var id="ferankpub";tarteaucitron.fallback(["ferank-publicite"],tarteaucitron.engage(id))}};tarteaucitron.services.getplus={key:"getplus",type:"analytic",name:"Get+",uri:"https://www.getplus.fr/Conditions-generales-de-vente_a226.html",needConsent:true,cookies:["_first_pageview","_jsuid","no_trackyy_"+tarteaucitron.user.getplusId,"_eventqueue"],js:function(){"use strict";if(tarteaucitron.user.getplusId===undefined){return}window.webleads_site_ids=window.webleads_site_ids||[];window.webleads_site_ids.push(tarteaucitron.user.getplusId);tarteaucitron.addScript("//stats.webleads-tracker.com/js")}};tarteaucitron.services.gplus={key:"gplus",type:"social",name:"Google+",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://apis.google.com/js/platform.js")},fallback:function(){"use strict";var id="gplus";tarteaucitron.fallback(["g-plus","g-plusone"],tarteaucitron.engage(id))}};tarteaucitron.services.gplusbadge={key:"gplusbadge",type:"social",name:"Google+ (badge)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://apis.google.com/js/platform.js")},fallback:function(){"use strict";var id="gplusbadge";tarteaucitron.fallback(["g-page","g-person"],tarteaucitron.engage(id))}};tarteaucitron.services.adsense={key:"adsense",type:"ads",name:"Google Adsense",uri:"https://adssettings.google.com/",needConsent:true,readmoreLink:"https://policies.google.com/technologies/partner-sites",cookies:["__gads"],js:function(){"use strict";tarteaucitron.fallback(["adsbygoogle"],"");tarteaucitron.addScript("https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js")},fallback:function(){"use strict";var id="adsense";tarteaucitron.fallback(["adsbygoogle"],tarteaucitron.engage(id))}};tarteaucitron.services.adsenseauto={key:"adsenseauto",type:"ads",name:"Google Adsense Automatic",uri:"https://adssettings.google.com/",needConsent:true,readmoreLink:"https://policies.google.com/technologies/partner-sites",cookies:["__gads"],js:function(){"use strict";if(tarteaucitron.user.adsensecapub===undefined){return}tarteaucitron.addScript("https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client="+tarteaucitron.user.adsensecapub,"","","","crossorigin","anonymous")}};tarteaucitron.services.adsensesearch={key:"adsensesearch",type:"ads",name:"Google Adsense Search",uri:"https://adssettings.google.com/",needConsent:true,readmoreLink:"https://policies.google.com/technologies/partner-sites",cookies:["__gads"],js:function(){"use strict";tarteaucitron.addScript("https://www.google.com/adsense/search/ads.js")},fallback:function(){"use strict";var id="adsensesearch";tarteaucitron.fallback(["afscontainer1"],tarteaucitron.engage(id))}};tarteaucitron.services.googlepartners={key:"googlepartners",type:"ads",name:"Google Partners Badge",uri:"https://adssettings.google.com/",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://apis.google.com/js/platform.js")},fallback:function(){"use strict";var id="googlepartners";tarteaucitron.fallback(["g-partnersbadge"],tarteaucitron.engage(id))}};tarteaucitron.services.adsensesearchform={key:"adsensesearchform",type:"ads",name:"Google Adsense Search (form)",uri:"https://adssettings.google.com/",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("//www.google.com/coop/cse/brand?form=cse-search-box&lang="+tarteaucitron.getLanguage())}};tarteaucitron.services.adsensesearchresult={key:"adsensesearchresult",type:"ads",name:"Google Adsense Search (result)",uri:"https://adssettings.google.com/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.adsensesearchresultCx===undefined){return}tarteaucitron.addScript("//www.google.com/cse/cse.js?cx="+tarteaucitron.user.adsensesearchresultCx)},fallback:function(){"use strict";var id="adsensesearchresult";if(document.getElementById("gcse_searchresults")){document.getElementById("gcse_searchresults").innerHTML=tarteaucitron.engage(id)}}};tarteaucitron.services.googleadwordsconversion={key:"googleadwordsconversion",type:"ads",name:"Google Adwords (conversion)",uri:"https://www.google.com/settings/ads",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.adwordsconversionId===undefined){return}tarteaucitron.addScript("//www.googleadservices.com/pagead/conversion_async.js","",function(){window.google_trackConversion({google_conversion_id:tarteaucitron.user.adwordsconversionId,google_conversion_label:tarteaucitron.user.adwordsconversionLabel,google_conversion_language:tarteaucitron.user.adwordsconversionLanguage,google_conversion_format:tarteaucitron.user.adwordsconversionFormat,google_conversion_color:tarteaucitron.user.adwordsconversionColor,google_conversion_value:tarteaucitron.user.adwordsconversionValue,google_conversion_currency:tarteaucitron.user.adwordsconversionCurrency,google_custom_params:{parameter1:tarteaucitron.user.adwordsconversionCustom1,parameter2:tarteaucitron.user.adwordsconversionCustom2}})})}};tarteaucitron.services.googleadwordsremarketing={key:"googleadwordsremarketing",type:"ads",name:"Google Adwords (remarketing)",uri:"https://www.google.com/settings/ads",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.adwordsremarketingId===undefined){return}tarteaucitron.addScript("//www.googleadservices.com/pagead/conversion_async.js","",function(){window.google_trackConversion({google_conversion_id:tarteaucitron.user.adwordsremarketingId,google_remarketing_only:true})})}};tarteaucitron.services.gajs={key:"gajs",type:"analytic",name:"Google Analytics (ga.js)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:function(){var googleIdentifier=tarteaucitron.user.gajsUa,tagUaCookie="_gat_gtag_"+googleIdentifier,tagGCookie="_ga_"+googleIdentifier;tagUaCookie=tagUaCookie.replace(/-/g,"_");tagGCookie=tagGCookie.replace(/G-/g,"");return["_ga","_gat","_gid","__utma","__utmb","__utmc","__utmt","__utmz",tagUaCookie,tagGCookie,"_gcl_au"]}(),js:function(){"use strict";if(tarteaucitron.user.gajsUa===undefined){return}window._gaq=window._gaq||[];window._gaq.push(["_setAccount",tarteaucitron.user.gajsUa]);if(timeExpire!==undefined){_gaq.push(["_setVisitorCookieTimeout",timeExpire])}if(tarteaucitron.user.gajsAnonymizeIp){window._gaq.push(["_gat._anonymizeIp"])}if(tarteaucitron.user.gajsPageView){window._gaq.push(["_trackPageview, "+tarteaucitron.user.gajsPageView])}else{window._gaq.push(["_trackPageview"])}tarteaucitron.addScript("//www.google-analytics.com/ga.js","",function(){if(typeof tarteaucitron.user.gajsMore==="function"){tarteaucitron.user.gajsMore()}})}};tarteaucitron.services.analytics={key:"analytics",type:"analytic",name:"Google Analytics (universal)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:function(){var googleIdentifier=tarteaucitron.user.analyticsUa,tagUaCookie="_gat_gtag_"+googleIdentifier,tagGCookie="_ga_"+googleIdentifier;tagUaCookie=tagUaCookie.replace(/-/g,"_");tagGCookie=tagGCookie.replace(/G-/g,"");return["_ga","_gat","_gid","__utma","__utmb","__utmc","__utmt","__utmz",tagUaCookie,tagGCookie,"_gcl_au"]}(),js:function(){"use strict";if(tarteaucitron.user.analyticsUa===undefined){return}window.GoogleAnalyticsObject="ga";window.ga=window.ga||function(){window.ga.q=window.ga.q||[];window.ga.q.push(arguments)};window.ga.l=new Date;tarteaucitron.addScript("https://www.google-analytics.com/analytics.js","",function(){var uaCreate={cookieExpires:timeExpire!==undefined?timeExpire:34128e3};tarteaucitron.extend(uaCreate,tarteaucitron.user.analyticsUaCreate||{});ga("create",tarteaucitron.user.analyticsUa,uaCreate);if(tarteaucitron.user.analyticsAnonymizeIp){ga("set","anonymizeIp",true)}if(typeof tarteaucitron.user.analyticsPrepare==="function"){tarteaucitron.user.analyticsPrepare()}if(tarteaucitron.user.analyticsPageView){ga("send","pageview",tarteaucitron.user.analyticsPageView)}else{ga("send","pageview")}if(typeof tarteaucitron.user.analyticsMore==="function"){tarteaucitron.user.analyticsMore()}})}};tarteaucitron.services.googleads={key:"googleads",type:"ads",name:"Google Ads",uri:"https://policies.google.com/privacy",needConsent:true,cookies:function(){var googleIdentifier=tarteaucitron.user.googleadsId,tagUaCookie="_gat_gtag_"+googleIdentifier,tagGCookie="_ga_"+googleIdentifier;tagUaCookie=tagUaCookie.replace(/-/g,"_");tagGCookie=tagGCookie.replace(/G-/g,"");return["_ga","_gat","_gid","__utma","__utmb","__utmc","__utmt","__utmz",tagUaCookie,tagGCookie,"_gcl_au"]}(),js:function(){"use strict";if(tarteaucitron.user.googleadsId===undefined){return}window.dataLayer=window.dataLayer||[];tarteaucitron.addScript("https://www.googletagmanager.com/gtag/js?id="+tarteaucitron.user.googleadsId,"",function(){window.gtag=function gtag(){dataLayer.push(arguments)};gtag("js",new Date);var additional_config_info=timeExpire!==undefined?{anonymize_ip:true,cookie_expires:timeExpire/1e3}:{anonymize_ip:true};gtag("config",tarteaucitron.user.googleadsId,additional_config_info);if(typeof tarteaucitron.user.googleadsMore==="function"){tarteaucitron.user.googleadsMore()}})},fallback:function(){if(tarteaucitron.parameters.googleConsentMode===true){if(tarteaucitron.parameters.softConsentMode===false){this.js()}}}};tarteaucitron.services.gtag={key:"gtag",type:"analytic",name:"Google Analytics (GA4)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:function(){var googleIdentifier=tarteaucitron.user.gtagUa,tagUaCookie="_gat_gtag_"+googleIdentifier,tagGCookie="_ga_"+googleIdentifier;tagUaCookie=tagUaCookie.replace(/-/g,"_");tagGCookie=tagGCookie.replace(/G-/g,"");return["_ga","_gat","_gid","__utma","__utmb","__utmc","__utmt","__utmz",tagUaCookie,tagGCookie,"_gcl_au"]}(),js:function(){"use strict";if(tarteaucitron.user.gtagUa===undefined){return}window.dataLayer=window.dataLayer||[];tarteaucitron.addScript("https://www.googletagmanager.com/gtag/js?id="+tarteaucitron.user.gtagUa,"",function(){window.gtag=function gtag(){dataLayer.push(arguments)};gtag("js",new Date);var additional_config_info=timeExpire!==undefined?{anonymize_ip:true,cookie_expires:timeExpire/1e3}:{anonymize_ip:true};if(tarteaucitron.user.gtagCrossdomain){gtag("config",tarteaucitron.user.gtagUa,additional_config_info,{linker:{domains:tarteaucitron.user.gtagCrossdomain}})}else{gtag("config",tarteaucitron.user.gtagUa,additional_config_info)}if(typeof tarteaucitron.user.gtagMore==="function"){tarteaucitron.user.gtagMore()}})},fallback:function(){if(tarteaucitron.parameters.googleConsentMode===true){if(tarteaucitron.parameters.softConsentMode===false){this.js()}}}};tarteaucitron.services.firebase={key:"firebase",type:"analytic",name:"Firebase",uri:"https://firebase.google.com/support/privacy",needConsent:true,cookies:function(){var googleIdentifier=tarteaucitron.user.firebaseMeasurementId,tagGCookie="_ga_"+googleIdentifier;tagGCookie=tagGCookie.replace(/G-/g,"");return["_ga",tagGCookie]}(),js:function(){"use strict";if(tarteaucitron.user.firebaseApiKey===undefined){return}tarteaucitron.addScript("https://www.gstatic.com/firebasejs/10.10.0/firebase-app.js","",function(){tarteaucitron.addScript("https://www.gstatic.com/firebasejs/10.10.0/firebase-analytics.js","",function(){var firebaseConfig={apiKey:tarteaucitron.user.firebaseApiKey,authDomain:tarteaucitron.user.firebaseAuthDomain,databaseURL:tarteaucitron.user.firebaseDatabaseUrl,projectId:tarteaucitron.user.firebaseProjectId,storageBucket:tarteaucitron.user.firebaseStorageBucket,appId:tarteaucitron.user.firebaseAppId,measurementId:tarteaucitron.user.firebaseMeasurementId};firebase.initializeApp(firebaseConfig);firebase.analytics()})})}};tarteaucitron.services.genially={key:"genially",type:"api",name:"genially",uri:"https://www.genial.ly/cookies",needConsent:true,cookies:["_gat","_ga","_gid"],js:function(){"use strict";tarteaucitron.fallback(["tac_genially"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"genially iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),geniallyid=tarteaucitron.getElemAttr(x,"geniallyid"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="genially";tarteaucitron.fallback(["tac_genially"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.googlemaps={key:"googlemaps",type:"api",name:"Google Maps",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";var mapOptions,map,uniqIds=[],i;if(tarteaucitron.user.mapscallback===undefined){tarteaucitron.user.mapscallback="tac_googlemaps_callback"}var googleMapsLibraries="";if(tarteaucitron.user.googlemapsLibraries){googleMapsLibraries="&libraries="+tarteaucitron.user.googlemapsLibraries}tarteaucitron.addScript("//maps.googleapis.com/maps/api/js?v=3.exp&key="+tarteaucitron.user.googlemapsKey+"&callback="+tarteaucitron.user.mapscallback+googleMapsLibraries);window.tac_googlemaps_callback=function(){tarteaucitron.fallback(["googlemaps-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});var i;for(i=0;i '})},fallback:function(){"use strict";var id="googlemapssearch";tarteaucitron.fallback(["googlemapssearch"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.googlemapsembed={key:"googlemapsembed",type:"api",name:"Google Maps Embed",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["apisid","hsid","nid","sapisid","sid","sidcc","ssid","1p_jar"],js:function(){"use strict";tarteaucitron.fallback(["googlemapsembed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Google maps iframe",width=tarteaucitron.getElemWidth(x),height=tarteaucitron.getElemHeight(x),url=tarteaucitron.getElemAttr(x,"data-url");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="googlemapsembed";tarteaucitron.fallback(["googlemapsembed"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemWidth(elem));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemHeight(elem));return tarteaucitron.engage(id)})}};tarteaucitron.services.openstreetmap={key:"openstreetmap",type:"api",name:"Openstreetmap Embed",uri:"https://wiki.osmfoundation.org/wiki/Privacy_Policy#Cookies",needConsent:true,cookies:["apisid","hsid","nid","sapisid","sid","sidcc","ssid","1p_jar"],js:function(){"use strict";tarteaucitron.fallback(["openstreetmap"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Openstreetmap iframe",width=tarteaucitron.getElemWidth(x),height=tarteaucitron.getElemHeight(x),url=tarteaucitron.getElemAttr(x,"data-url");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="openstreetmap";tarteaucitron.fallback(["openstreetmap"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemWidth(elem));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemHeight(elem));return tarteaucitron.engage(id)})}};tarteaucitron.services.geoportail={key:"geoportail",type:"api",name:"Geoportail maps Embed",uri:"https://www.ign.fr/institut/gestion-des-cookies",needConsent:true,cookies:["apisid","hsid","nid","sapisid","sid","sidcc","ssid","1p_jar"],js:function(){"use strict";tarteaucitron.fallback(["geoportail"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Geoportail maps iframe",width=tarteaucitron.getElemWidth(x),height=tarteaucitron.getElemHeight(x),url=tarteaucitron.getElemAttr(x,"data-url");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="geoportail";tarteaucitron.fallback(["geoportail"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemWidth(elem));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemHeight(elem));return tarteaucitron.engage(id)})}};tarteaucitron.services.googletagmanager={key:"googletagmanager",type:"api",name:"Google Tag Manager",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["_ga","_gat","__utma","__utmb","__utmc","__utmt","__utmz","__gads","_drt_","FLC","exchange_uid","id","fc","rrs","rds","rv","uid","UIDR","UID","clid","ipinfo","acs"],js:function(){"use strict";if(tarteaucitron.user.googletagmanagerId===undefined){return}window.dataLayer=window.dataLayer||[];window.dataLayer.push({"gtm.start":(new Date).getTime(),event:"gtm.js"});tarteaucitron.addScript("https://www.googletagmanager.com/gtm.js?id="+tarteaucitron.user.googletagmanagerId)},fallback:function(){if(tarteaucitron.parameters.googleConsentMode===true){if(tarteaucitron.parameters.softConsentMode===false){this.js()}}}};tarteaucitron.services.multiplegoogletagmanager={key:"multiplegoogletagmanager",type:"api",name:"Google Tag Manager",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["_ga","_gat","__utma","__utmb","__utmc","__utmt","__utmz","__gads","_drt_","FLC","exchange_uid","id","fc","rrs","rds","rv","uid","UIDR","UID","clid","ipinfo","acs"],js:function(){"use strict";if(tarteaucitron.user.multiplegoogletagmanagerId===undefined){return}window.dataLayer=window.dataLayer||[];window.dataLayer.push({"gtm.start":(new Date).getTime(),event:"gtm.js"});tarteaucitron.user.multiplegoogletagmanagerId.forEach(function(id){tarteaucitron.addScript("https://www.googletagmanager.com/gtm.js?id="+id)})},fallback:function(){if(tarteaucitron.parameters.googleConsentMode===true){if(tarteaucitron.parameters.softConsentMode===false){this.js()}}}};tarteaucitron.services.googlefonts={key:"googlefonts",type:"api",name:"Google Webfonts",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.googleFonts===undefined){return}tarteaucitron.addScript("//ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js","",function(){if(tarteaucitron.user.googleFonts instanceof Array){WebFont.load({google:{families:tarteaucitron.user.googleFonts}})}else{WebFont.load({google:{families:[tarteaucitron.user.googleFonts]}})}})}};tarteaucitron.services.hubspot={key:"hubspot",type:"analytic",name:"Hubspot",uri:"https://legal.hubspot.com/privacy-policy",needConsent:true,cookies:["hubspotutk","fr","__hstc","__hssrc","__hssc","__cfduid"],js:function(){"use strict";if(tarteaucitron.user.hubspotId===undefined){return}var tac_businessUnitId="";if(tarteaucitron.user.hubspotBusinessUnitId!==undefined&&tarteaucitron.user.hubspotBusinessUnitId!==null&&tarteaucitron.user.hubspotBusinessUnitId!==""){tac_businessUnitId="?businessUnitId="+tarteaucitron.user.hubspotBusinessUnitId}tarteaucitron.addScript("//js.hs-scripts.com/"+tarteaucitron.user.hubspotId+".js"+tac_businessUnitId,"hs-script-loader")}};tarteaucitron.services.instagram={key:"instagram",type:"social",name:"Instagram",uri:"https://www.instagram.com/legal/privacy/",needConsent:true,cookies:["shbts","sessionid","csrftoken","rur","shbid","mid","ds_usr_id","ig_did","ig_cb","datr"],js:function(){"use strict";tarteaucitron.fallback(["instagram_post"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Instagram iframe",post_id=tarteaucitron.getElemAttr(x,"postId"),page_id=tarteaucitron.getElemAttr(x,"pageId"),post_permalink=tarteaucitron.getElemAttr(x,"data-instgrm-permalink"),embed_width=tarteaucitron.getElemAttr(x,"width"),embed_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",post_frame;if(post_permalink!=null){tarteaucitron.addScript("//www.instagram.com/embed.js","instagram-embed");return""}var post_link=post_id!==""?"p/"+post_id:page_id!==""?page_id:"";if(post_link===""){return""}if(embed_width!==""){styleAttr="width:"+tarteaucitron.getStyleSize(embed_width)+";"}if(embed_height!==""){styleAttr="height:"+tarteaucitron.getStyleSize(embed_height)+";"}post_frame='';return post_frame})},fallback:function(){"use strict";var id="instagram";tarteaucitron.fallback(["instagram_post"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.jsapi={key:"jsapi",type:"api",name:"Google jsapi",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("//www.google.com/jsapi")}};tarteaucitron.services.twitterwidgetsapi={key:"twitterwidgetsapi",type:"api",name:"X (formerly Twitter) Widgets API",uri:"https://support.twitter.com/articles/20170514",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tacTwitterAPI"],"");tarteaucitron.addScript("//platform.twitter.com/widgets.js","twitter-wjs")},fallback:function(){"use strict";var id="twitterwidgetsapi";tarteaucitron.fallback(["tacTwitterAPI"],tarteaucitron.engage(id))}};tarteaucitron.services.recaptcha={key:"recaptcha",type:"api",name:"reCAPTCHA",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["nid"],js:function(){"use strict";window.tacRecaptchaOnLoad=tarteaucitron.user.recaptchaOnLoad||function(){};tarteaucitron.fallback(["g-recaptcha"],"");let url="https://www.google.com/recaptcha/api.js?onload=tacRecaptchaOnLoad";if(tarteaucitron.user.recaptchaapi!==undefined){url+="&render="+tarteaucitron.user.recaptchaapi}if(tarteaucitron.user.recaptcha_hl!==undefined){url+="&hl="+tarteaucitron.user.recaptcha_hl}tarteaucitron.addScript(url)},fallback:function(){"use strict";var id="recaptcha";tarteaucitron.fallback(["g-recaptcha"],tarteaucitron.engage(id))}};tarteaucitron.services.linkedin={key:"linkedin",type:"social",name:"Linkedin",uri:"https://www.linkedin.com/legal/cookie-policy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tacLinkedin"],"");tarteaucitron.addScript("//platform.linkedin.com/in.js");if(tarteaucitron.isAjax===true){if(typeof IN!=="undefined"){IN.parse()}}},fallback:function(){"use strict";var id="linkedin";tarteaucitron.fallback(["tacLinkedin"],tarteaucitron.engage(id))}};tarteaucitron.services.mautic={key:"mautic",type:"analytic",name:"Mautic",uri:"https://www.mautic.org/privacy-policy/",needConsent:true,cookies:["mtc_id","mtc_sid"],js:function(){"use strict";if(tarteaucitron.user.mauticurl===undefined){return}window.MauticTrackingObject="mt";window.mt=window.mt||function(){window.mt.q=window.mt.q||[];window.mt.q.push(arguments)};tarteaucitron.addScript(tarteaucitron.user.mauticurl,"",function(){mt("send","pageview")})}};tarteaucitron.services.microsoftcampaignanalytics={key:"microsoftcampaignanalytics",type:"analytic",name:"Microsoft Campaign Analytics",uri:"https://privacy.microsoft.com/privacystatement/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.microsoftcampaignanalyticsUUID===undefined){return}tarteaucitron.addScript("//flex.atdmt.com/mstag/site/"+tarteaucitron.user.microsoftcampaignanalyticsUUID+"/mstag.js","mstag_tops",function(){window.mstag={loadTag:function(){},time:(new Date).getTime()};window.mstag.loadTag("analytics",{dedup:"1",domainId:tarteaucitron.user.microsoftcampaignanalyticsdomainId,type:"1",actionid:tarteaucitron.user.microsoftcampaignanalyticsactionId})})}};tarteaucitron.services.onesignal={key:"onesignal",type:"api",name:"OneSignal",uri:"https://onesignal.com/privacy_policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.onesignalAppId===undefined){return}window.OneSignal=window.OneSignal||[];window.OneSignal.push(function(){window.OneSignal.init({appId:tarteaucitron.user.onesignalAppId})});tarteaucitron.addScript("https://cdn.onesignal.com/sdks/OneSignalSDK.js")}};tarteaucitron.services.pinterest={key:"pinterest",type:"social",name:"Pinterest",uri:"https://about.pinterest.com/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tacPinterest"],"");tarteaucitron.addScript("//assets.pinterest.com/js/pinit.js")},fallback:function(){"use strict";var id="pinterest";tarteaucitron.fallback(["tacPinterest"],tarteaucitron.engage(id))}};tarteaucitron.services.prelinker={key:"prelinker",type:"ads",name:"Prelinker",uri:"https://www.prelinker.com/index/index/cgu/",needConsent:true,cookies:["_sp_id.32f5","_sp_ses.32f5"],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["prelinker-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i'})},fallback:function(){"use strict";var id="prezi";tarteaucitron.fallback(["prezi-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.pubdirecte={key:"pubdirecte",type:"ads",name:"Pubdirecte",uri:"https://pubdirecte.com/contact.php",needConsent:true,cookies:[],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["pubdirecte-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i
          '})},fallback:function(){"use strict";var id="rumbletalk";tarteaucitron.fallback(["rumbletalk"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemWidth(elem));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemHeight(elem));return tarteaucitron.engage(id)})}};tarteaucitron.services.shareaholic={key:"shareaholic",type:"social",name:"Shareaholic",uri:"https://shareaholic.com/privacy/choices",needConsent:true,cookies:["__utma","__utmb","__utmc","__utmz","__utmt_Shareaholic%20Pageviews"],js:function(){"use strict";if(tarteaucitron.user.shareaholicSiteId===undefined){return}tarteaucitron.fallback(["shareaholic-canvas"],"");tarteaucitron.addScript("//dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js","",function(){try{Shareaholic.init(tarteaucitron.user.shareaholicSiteId)}catch(e){}})},fallback:function(){"use strict";var id="shareaholic";tarteaucitron.fallback(["shareaholic-canvas"],tarteaucitron.engage(id))}};tarteaucitron.services.shareasale={key:"shareasale",type:"ads",name:"ShareASale",uri:"https://www.shareasale.com/PrivacyPolicy.pdf",needConsent:true,cookies:[],js:function(){"use strict";var uniqIds=[],i,uri;tarteaucitron.fallback(["shareasale-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i"}},fallback:function(){"use strict";var id="shareasale";tarteaucitron.fallback(["shareasale-canvas"],tarteaucitron.engage(id))}};tarteaucitron.services.sharethis={key:"sharethis",type:"social",name:"ShareThis",uri:"https://www.sharethis.com/legal/privacy/",needConsent:true,cookies:["__unam"],js:function(){"use strict";if(tarteaucitron.user.sharethisPublisher===undefined){return}var switchTo5x=true,uri=("https:"===document.location.protocol?"https://ws":"http://w")+".sharethis.com/button/buttons.js";tarteaucitron.fallback(["tacSharethis"],"");tarteaucitron.addScript(uri,"",function(){stLight.options({publisher:tarteaucitron.user.sharethisPublisher,doNotHash:false,doNotCopy:false,hashAddressBar:false})});if(tarteaucitron.isAjax===true){if(typeof stButtons!=="undefined"){stButtons.locateElements()}}},fallback:function(){"use strict";var id="sharethis";tarteaucitron.fallback(["tacSharethis"],tarteaucitron.engage(id))}};tarteaucitron.services.slideshare={key:"slideshare",type:"video",name:"SlideShare",uri:"https://www.linkedin.com/legal/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["slideshare-canvas"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Slideshare iframe",id=tarteaucitron.getElemAttr(x,"data-id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),url="//www.slideshare.net/slideshow/embed_code/key/"+id;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="slideshare";tarteaucitron.fallback(["slideshare-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.soundcloud={key:"soundcloud",type:"video",name:"SoundCloud",needConsent:true,uri:"https://soundcloud.com/pages/privacy",cookies:["sc_anonymous_id","sclocale"],js:function(){"use strict";tarteaucitron.fallback(["soundcloud_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Soundcloud iframe",player_height=tarteaucitron.getElemAttr(x,"data-height"),frame_height="height:"+tarteaucitron.getStyleSize(player_height)+";",playable_id=tarteaucitron.getElemAttr(x,"data-playable-id"),playable_type=tarteaucitron.getElemAttr(x,"data-playable-type"),playable_url=tarteaucitron.getElemAttr(x,"data-playable-url"),color=tarteaucitron.getElemAttr(x,"data-color"),autoplay=tarteaucitron.getElemAttr(x,"data-auto-play"),hideRelated=tarteaucitron.getElemAttr(x,"data-hide-related"),showComments=tarteaucitron.getElemAttr(x,"data-show-comments"),showUser=tarteaucitron.getElemAttr(x,"data-show-user"),showReposts=tarteaucitron.getElemAttr(x,"data-show-reposts"),showTeaser=tarteaucitron.getElemAttr(x,"data-show-teaser"),visual=tarteaucitron.getElemAttr(x,"data-visual"),artwork=tarteaucitron.getElemAttr(x,"data-artwork");var allowAutoplay=autoplay==="true"?'allow="autoplay"':"";if(playable_id===""&&playable_url===""){return""}var qs="?url=https%3A//api.soundcloud.com/"+playable_type+"/"+playable_id;if(playable_url&&playable_url.length>0)qs="?url="+escape(playable_url);if(hideRelated&&hideRelated.length>0)qs+="&hide_related="+hideRelated;if(color&&color.length>0)qs+="&color="+color.replace("#","%23");if(autoplay&&autoplay.length>0)qs+="&auto_play="+autoplay;if(showComments&&showComments.length>0)qs+="&show_comments="+showComments;if(hideRelated&&hideRelated.length>0)qs+="&hide_related="+hideRelated;if(showUser&&showUser.length>0)qs+="&show_user="+showUser;if(showReposts&&showReposts.length>0)qs+="&show_reposts="+showReposts;if(showTeaser&&showTeaser.length>0)qs+="&show_teaser="+showTeaser;if(visual&&visual.length>0)qs+="&visual="+visual;if(artwork&&artwork.length>0)qs+="&show_artwork="+artwork;return''})},fallback:function(){"use strict";tarteaucitron.fallback(["soundcloud_player"],function(elem){elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-height"));return tarteaucitron.engage("soundcloud")})}};tarteaucitron.services.spotify={key:"spotify",type:"video",name:"Spotify",uri:"https://www.spotify.com/us/legal/privacy-policy/",needConsent:true,cookies:["sp_landing","_ga","sp_ab","sp_landingref","sp_t","sp_usid","OptanonConsent","sp_m","spot"],js:function(){"use strict";tarteaucitron.fallback(["spotify_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Spotify iframe",spotify_id=tarteaucitron.getElemAttr(x,"spotifyID"),spotify_width=tarteaucitron.getElemAttr(x,"width"),spotify_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="border-radius:12px;",spotify_frame;if(spotify_id===""){return""}if(spotify_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(spotify_width)+";"}if(spotify_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(spotify_height)+";"}spotify_frame='';return spotify_frame})},fallback:function(){"use strict";var id="spotify";tarteaucitron.fallback(["spotify_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.statcounter={key:"statcounter",type:"analytic",name:"StatCounter",uri:"https://fr.statcounter.com/about/legal/#privacy",needConsent:true,cookies:["sc_is_visitor_unique"],js:function(){"use strict";var uniqIds=[],i,uri="//statcounter.com/counter/counter.js";tarteaucitron.fallback(["statcounter-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);return'
          '});for(i=0;i'})},fallback:function(){"use strict";var id="timelinejs";tarteaucitron.fallback(["timelinejs-canvas"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.tagcommander={key:"tagcommander",type:"api",name:"TagCommander",uri:"https://www.commandersact.com/en/privacy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.tagcommanderid===undefined){return}tarteaucitron.addScript("https://cdn.tagcommander.com/"+tarteaucitron.user.tagcommanderid+".js")}};tarteaucitron.services.typekit={key:"typekit",type:"api",name:"Typekit (adobe)",uri:"https://www.adobe.com/privacy.html",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.typekitId===undefined){return}tarteaucitron.addScript("//use.typekit.net/"+tarteaucitron.user.typekitId+".js","",function(){try{Typekit.load()}catch(e){}})}};tarteaucitron.services.twenga={key:"twenga",type:"ads",name:"Twenga",uri:"https://www.twenga.com/privacy.php",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.twengaId===undefined||tarteaucitron.user.twengaLocale===undefined){return}tarteaucitron.addScript("//tracker.twenga."+tarteaucitron.user.twengaLocale+"/st/tracker_"+tarteaucitron.user.twengaId+".js")}};tarteaucitron.services.twitter={key:"twitter",type:"social",name:"X (formerly Twitter)",uri:"https://support.twitter.com/articles/20170514",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tacTwitter"],"");tarteaucitron.addScript("//platform.twitter.com/widgets.js","twitter-wjs")},fallback:function(){"use strict";var id="twitter";tarteaucitron.fallback(["tacTwitter"],tarteaucitron.engage(id))}};tarteaucitron.services.twitterembed={key:"twitterembed",type:"social",name:"X (formerly Twitter) cards",uri:"https://support.twitter.com/articles/20170514",needConsent:true,cookies:[],js:function(){"use strict";var uniqIds=[],i,e,html;tarteaucitron.fallback(["twitterembed-canvas"],function(x){var uniqId="_"+Math.random().toString(36).substr(2,9);uniqIds.push(uniqId);html='
          0){params.push("h="+video_hash)}if(params.length>0){video_qs="?"+params.join("&")}if(video_width!==undefined){styleAttr+="width:"+tarteaucitron.getStyleSize(video_width)+";"}if(video_height!==undefined){styleAttr+="height:"+tarteaucitron.getStyleSize(video_height)+";"}video_frame='";return video_frame})},fallback:function(){"use strict";var id="vimeo";tarteaucitron.fallback(["vimeo_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.visualrevenue={key:"visualrevenue",type:"analytic",name:"VisualRevenue",uri:"https://www.outbrain.com/legal/privacy-713/",needConsent:true,cookies:["__vrf","__vrm","__vrl","__vry","__vru","__vrid","__vrz"],js:function(){"use strict";if(tarteaucitron.user.visualrevenueId===undefined){return}window._vrq=window._vrq||[];window._vrq.push(["id",tarteaucitron.user.visualrevenueId]);window._vrq.push(["automate",true]);window._vrq.push(["track",function(){}]);tarteaucitron.addScript("https://a.visualrevenue.com/vrs.js")}};tarteaucitron.services.verizondottag={key:"verizondottag",type:"analytic",name:"Verizon Dot Tag",uri:"https://developer.verizonmedia.com/native/guide/audience-management/dottags/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.verizondottagProjectId===undefined){return}window.dotq=window.dotq||[];window.dotq.push({projectId:tarteaucitron.user.verizondottagProjectId,properties:{pixelId:tarteaucitron.user.verizondottagPixelId}});tarteaucitron.addScript("https://s.yimg.com/wi/ytc.js","",function(){window.dotq=[];window.dotq.push=function(item){YAHOO.ywa.I13N.fireBeacon([item])};YAHOO.ywa.I13N.fireBeacon(items)})}};tarteaucitron.services.vshop={key:"vshop",type:"ads",name:"vShop",uri:"https://vshop.fr/privacy-policy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["vcashW"],"");tarteaucitron.addScript("//vshop.fr/js/w.js")},fallback:function(){"use strict";var id="vshop";tarteaucitron.fallback(["vcashW"],tarteaucitron.engage(id))}};tarteaucitron.services.wysistat={key:"wysistat",type:"analytic",name:"Wysistat",uri:"https://wysistat.net/contact/",needConsent:true,cookies:["Wysistat"],js:function(){"use strict";if(tarteaucitron.user.wysistat===undefined){return}tarteaucitron.addScript("//www.wysistat.com/statistique.js","",function(){window.stat(tarteaucitron.user.wysistat.cli,tarteaucitron.user.wysistat.frm,tarteaucitron.user.wysistat.prm,tarteaucitron.user.wysistat.ce,tarteaucitron.user.wysistat.page,tarteaucitron.user.wysistat.roi,tarteaucitron.user.wysistat.prof,tarteaucitron.user.wysistat.cpt)})}};tarteaucitron.services.xiti={key:"xiti",type:"analytic",name:"Xiti",uri:"https://www.atinternet.com/rgpd-et-vie-privee/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.xitiId===undefined){return}var Xt_param="s="+tarteaucitron.user.xitiId+"&p=",Xt_r,Xt_h,Xt_i,Xt_s,div=document.createElement("div");try{Xt_r=top.document.referrer}catch(e){Xt_r=document.referrer}Xt_h=new Date;Xt_i='=4){Xt_s=screen;Xt_i+="&r="+Xt_s.width+"x"+Xt_s.height+"x"+Xt_s.pixelDepth+"x"+Xt_s.colorDepth}div.innerHTML=Xt_i+"&ref="+Xt_r.replace(/[<>"]/g,"").replace(/&/g,"$")+'" title="Internet Audience">';document.getElementsByTagName("body")[0].appendChild(div.firstChild);if(typeof tarteaucitron.user.xitiMore==="function"){tarteaucitron.user.xitiMore()}}};tarteaucitron.services.atinternet={key:"atinternet",type:"analytic",name:"AT Internet (privacy by design)",uri:"https://www.atinternet.com/rgpd-et-vie-privee/",needConsent:true,safeanalytic:false,cookies:["atidvisitor","atreman","atredir","atsession"],js:function(){"use strict";if(tarteaucitron.user.atLibUrl===undefined){return}if(tarteaucitron.user.atinternetAlreadyLoaded!==undefined){return}tarteaucitron.addScript(tarteaucitron.user.atLibUrl,"",function(){window.tag=new ATInternet.Tracker.Tag;if(typeof window.tag.privacy!=="undefined"){window.tag.privacy.setVisitorOptin()}if(typeof tarteaucitron.user.atMore==="function"){tarteaucitron.user.atMore()}if(tarteaucitron.user.atinternetSendData!==false){window.tag.page.send()}})},fallback:function(){"use strict";if(tarteaucitron.user.atLibUrl===undefined){return}if(tarteaucitron.user.atNoFallback===true){return}tarteaucitron.user.atinternetAlreadyLoaded=true;tarteaucitron.addScript(tarteaucitron.user.atLibUrl,"",function(){window.tag=new ATInternet.Tracker.Tag;if(typeof window.tag.privacy!=="undefined"){var visitorMode=window.tag.privacy.getVisitorMode();if(visitorMode!==null&&visitorMode.name!==undefined&&visitorMode.name=="optout"){window.tag.privacy.setVisitorOptout()}else{window.tag.privacy.setVisitorMode("cnil","exempt")}}if(typeof tarteaucitron.user.atMore==="function"){tarteaucitron.user.atMore()}if(tarteaucitron.user.atinternetSendData!==false){window.tag.page.send()}})}};tarteaucitron.services.atinternethightrack={key:"atinternethightrack",type:"analytic",name:"AT Internet",uri:"https://www.atinternet.com/rgpd-et-vie-privee/",needConsent:true,cookies:["atidvisitor","atreman","atredir","atsession"],js:function(){"use strict";if(tarteaucitron.user.atLibUrl===undefined){return}tarteaucitron.addScript(tarteaucitron.user.atLibUrl,"",function(){var tag=new ATInternet.Tracker.Tag;if(typeof tarteaucitron.user.atMore==="function"){tarteaucitron.user.atMore()}})}};tarteaucitron.services.youtube={key:"youtube",type:"video",name:"YouTube",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["VISITOR_INFO1_LIVE","YSC","PREF"],js:function(){"use strict";tarteaucitron.fallback(["youtube_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Youtube iframe",video_id=tarteaucitron.getElemAttr(x,"videoID"),srcdoc=tarteaucitron.getElemAttr(x,"srcdoc"),loading=tarteaucitron.getElemAttr(x,"loading"),video_width=tarteaucitron.getElemAttr(x,"width"),video_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",video_frame,allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen"),start=tarteaucitron.getElemAttr(x,"start"),end=tarteaucitron.getElemAttr(x,"end"),attrs=["theme","rel","controls","showinfo","autoplay","mute","start","end","loop","enablejsapi"],params=attrs.filter(function(a){return tarteaucitron.getElemAttr(x,a)!==""}).map(function(a){return a+"="+tarteaucitron.getElemAttr(x,a)}).join("&");if(tarteaucitron.getElemAttr(x,"loop")==1){params=params+"&playlist="+video_id}if(video_id===""){return""}if(video_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(video_width)+";"}if(video_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(video_height)+";"}if(srcdoc!==undefined&&srcdoc!==null&&srcdoc!==""){srcdoc='srcdoc="'+srcdoc+'" '}else{srcdoc=""}if(loading!==undefined&&loading!==null&&loading!==""){loading="loading "}else{loading=""}video_frame='";return video_frame})},fallback:function(){"use strict";var id="youtube";tarteaucitron.fallback(["youtube_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.youtubeplaylist={key:"youtubeplaylist",type:"video",name:"YouTube (playlist)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:["VISITOR_INFO1_LIVE","YSC","PREF"],js:function(){"use strict";tarteaucitron.fallback(["youtube_playlist_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Youtube iframe",playlist_id=tarteaucitron.getElemAttr(x,"playlistID"),video_width=tarteaucitron.getElemAttr(x,"width"),video_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",video_frame,allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen"),params="theme="+tarteaucitron.getElemAttr(x,"theme")+"&rel="+tarteaucitron.getElemAttr(x,"rel")+"&controls="+tarteaucitron.getElemAttr(x,"controls")+"&showinfo="+tarteaucitron.getElemAttr(x,"showinfo")+"&autoplay="+tarteaucitron.getElemAttr(x,"autoplay")+"&mute="+tarteaucitron.getElemAttr(x,"mute");if(playlist_id===""){return""}if(video_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(video_width)+";"}if(video_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(video_height)+";"}video_frame='";return video_frame})},fallback:function(){"use strict";var id="youtubeplaylist";tarteaucitron.fallback(["youtube_playlist_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.zopim={key:"zopim",type:"support",name:"Zopim",uri:"https://www.zopim.com/privacy",needConsent:true,cookies:["__zlcid","__zprivacy"],js:function(){"use strict";if(tarteaucitron.user.zopimID===undefined){return}tarteaucitron.addScript("//v2.zopim.com/?"+tarteaucitron.user.zopimID)}};tarteaucitron.services.kameleoon={key:"kameleoon",type:"analytic",name:"Kameleoon",uri:"https://www.kameleoon.com/fr/compliance/rgpd",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.kameleoon!==undefined){tarteaucitron.addScript("https://"+tarteaucitron.user.kameleoon+".kameleoon.eu/kameleoon.js")}}};tarteaucitron.services.linkedininsighttag={key:"linkedininsighttag",type:"ads",name:"Linkedin Insight",uri:"https://www.linkedin.com/legal/cookie-policy",needConsent:true,cookies:["li_fat_id"],js:function(){"use strict";if(tarteaucitron.user.linkedininsighttag!==undefined){window._linkedin_data_partner_ids=window._linkedin_data_partner_ids||[];window._linkedin_data_partner_ids.push(tarteaucitron.user.linkedininsighttag)}tarteaucitron.addScript("https://snap.licdn.com/li.lms-analytics/insight.min.js")}};tarteaucitron.services.xiti_smarttag={key:"xiti_smarttag",type:"analytic",name:"Xiti (SmartTag)",uri:"https://www.atinternet.com/rgpd-et-vie-privee/",needConsent:true,cookies:["atidvisitor","atreman","atredir","atsession","attvtreman","attvtsession"],js:function(){"use strict";if(tarteaucitron.user.xiti_smarttagLocalPath!==undefined){tarteaucitron.addScript(tarteaucitron.user.xiti_smarttagLocalPath,"smarttag",null,null,"onload","addTracker();")}else{var xitiSmarttagId=tarteaucitron.user.xiti_smarttagSiteId;if(xitiSmarttagId===undefined){return}tarteaucitron.addScript("//tag.aticdn.net/"+xitiSmarttagId+"/smarttag.js","smarttag",null,null,"onload","addTracker();")}}};tarteaucitron.services.facebookpixel={key:"facebookpixel",type:"ads",name:"Facebook Pixel",uri:"https://www.facebook.com/policy.php",needConsent:true,cookies:["datr","fr","reg_ext_ref","reg_fb_gate","reg_fb_ref","sb","wd","x-src","_fbp"],js:function(){"use strict";if(tarteaucitron.user.facebookpixelId===undefined){return}var n;if(window.fbq)return;n=window.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!window._fbq)window._fbq=n;n.push=n;n.loaded=!0;n.version="2.0";n.queue=[];tarteaucitron.addScript("https://connect.facebook.net/en_US/fbevents.js");fbq("init",tarteaucitron.user.facebookpixelId);fbq("track","PageView");if(typeof tarteaucitron.user.facebookpixelMore==="function"){tarteaucitron.user.facebookpixelMore()}}};tarteaucitron.services.issuu={key:"issuu",type:"other",name:"Issuu",uri:"https://issuu.com/legal/privacy",needConsent:true,cookies:["__qca","iutk","mc"],js:function(){"use strict";tarteaucitron.fallback(["issuu_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Issuu iframe",issuu_id=tarteaucitron.getElemAttr(x,"issuuID"),issuu_width=tarteaucitron.getElemAttr(x,"width"),issuu_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",issuu_frame,issuu_embed;if(issuu_id===""){return""}if(issuu_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(issuu_width)+";"}if(issuu_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(issuu_height)+";"}if(issuu_id.match(/\d+\/\d+/)){issuu_embed="#"+issuu_id}else if(issuu_id.match(/d=(.*)&u=(.*)/)){issuu_embed="?"+issuu_id}issuu_frame='';return issuu_frame})},fallback:function(){"use strict";var id="issuu";tarteaucitron.fallback(["issuu_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.webmecanik={key:"webmecanik",type:"analytic",name:"Webmecanik",uri:"https://webmecanik.com/tos",needConsent:true,cookies:["mtc_id","mtc_sid"],js:function(){"use strict";if(tarteaucitron.user.webmecanikurl===undefined){return}window.MauticTrackingObject="mt";window.mt=window.mt||function(){window.mt.q=window.mt.q||[];window.mt.q.push(arguments)};tarteaucitron.addScript(tarteaucitron.user.webmecanikurl,"",function(){mt("send","pageview")})}};tarteaucitron.services.multiplegtag={key:"multiplegtag",type:"analytic",name:"Google Analytics (gtag.js)",uri:"https://support.google.com/analytics/answer/6004245",needConsent:true,cookies:function(){var cookies=["_ga","_gat","_gid","__utma","__utmb","__utmc","__utmt","__utmz","_gcl_au"];if(tarteaucitron.user.multiplegtagUa!==undefined){tarteaucitron.user.multiplegtagUa.forEach(function(ua){cookies.push("_gat_gtag_"+ua.replace(/-/g,"_"));cookies.push("_ga_"+ua.replace(/G-/g,""))})}return cookies}(),js:function(){"use strict";window.dataLayer=window.dataLayer||[];if(tarteaucitron.user.multiplegtagUa!==undefined){tarteaucitron.user.multiplegtagUa.forEach(function(ua){tarteaucitron.addScript("https://www.googletagmanager.com/gtag/js?id="+ua,"",function(){window.gtag=function gtag(){dataLayer.push(arguments)};gtag("js",new Date);var additional_config_info=timeExpire!==undefined?{anonymize_ip:true,cookie_expires:timeExpire/1e3}:{anonymize_ip:true};gtag("config",ua,additional_config_info)})})}},fallback:function(){if(tarteaucitron.parameters.googleConsentMode===true){if(tarteaucitron.parameters.softConsentMode===false){this.js()}}}};tarteaucitron.services.koban={key:"koban",type:"analytic",name:"Koban",uri:"https://koban.cloud/tos",needConsent:true,cookies:["kbntrk"],js:function(){"use strict";if(tarteaucitron.user.kobanurl===undefined){return}if(tarteaucitron.user.kobanapi===undefined){return}window.KobanObject="kb";window.kb=window.kb||function(){window.kb.q=window.kb.q||[];window.kb.q.push(arguments)};window.kb.l=new Date;kb("reg",tarteaucitron.user.kobanapi);tarteaucitron.addScript(tarteaucitron.user.kobanurl,"",function(){})}};tarteaucitron.services.matomo={key:"matomo",type:"analytic",name:"Matomo (privacy by design)",uri:"https://matomo.org/faq/general/faq_146/",needConsent:false,cookies:["_pk_ref","_pk_cvar","_pk_id","_pk_ses","_pk_hsr","piwik_ignore","_pk_uid"],js:function(){"use strict";if(tarteaucitron.user.matomoId===undefined){return}window._paq=window._paq||[];window._paq.push(["setSiteId",tarteaucitron.user.matomoId]);window._paq.push(["setTrackerUrl",tarteaucitron.user.matomoHost+"piwik.php"]);window._paq.push(["setDoNotTrack",1]);window._paq.push(["trackPageView"]);window._paq.push(["setIgnoreClasses",["no-tracking","colorbox"]]);window._paq.push(["enableLinkTracking"]);if(typeof tarteaucitron.user.matomoMore==="function"){tarteaucitron.user.matomoMore()}window._paq.push([function(){var self=this;function getOriginalVisitorCookieTimeout(){var now=new Date,nowTs=Math.round(now.getTime()/1e3),visitorInfo=self.getVisitorInfo();var createTs=parseInt(visitorInfo[2]);var cookieTimeout=33696e3;var originalTimeout=createTs+cookieTimeout-nowTs;return originalTimeout}this.setVisitorCookieTimeout(getOriginalVisitorCookieTimeout())}]);tarteaucitron.addScript(tarteaucitron.user.matomoHost+"piwik.js","","",true,"defer",true);var interval=setInterval(function(){if(typeof Piwik==="undefined")return;clearInterval(interval);Piwik.getTracker();var theCookies=document.cookie.split(";");for(var i=1;i<=theCookies.length;i++){var cookie=theCookies[i-1].split("=");var cookieName=cookie[0].trim();if(cookieName.indexOf("_pk_")===0){tarteaucitron.services.matomo.cookies.push(cookieName)}}},100)}};tarteaucitron.services.matomohightrack={key:"matomohightrack",type:"analytic",name:"Matomo",uri:"https://matomo.org/faq/general/faq_146/",needConsent:false,cookies:["_pk_ref","_pk_cvar","_pk_id","_pk_ses","_pk_hsr","piwik_ignore","_pk_uid"],js:function(){"use strict";if(tarteaucitron.user.matomoId===undefined){return}window._paq=window._paq||[];window._paq.push(["setSiteId",tarteaucitron.user.matomoId]);window._paq.push(["setTrackerUrl",tarteaucitron.user.matomoHost+"piwik.php"]);window._paq.push(["trackPageView"]);window._paq.push(["setIgnoreClasses",["no-tracking","colorbox"]]);window._paq.push(["enableLinkTracking"]);window._paq.push([function(){var self=this}]);tarteaucitron.addScript(tarteaucitron.user.matomoHost+"piwik.js","","",true,"defer",true);var interval=setInterval(function(){if(typeof Piwik==="undefined")return;clearInterval(interval);Piwik.getTracker();var theCookies=document.cookie.split(";");for(var i=1;i<=theCookies.length;i++){var cookie=theCookies[i-1].split("=");var cookieName=cookie[0].trim();if(cookieName.indexOf("_pk_")===0){tarteaucitron.services.matomo.cookies.push(cookieName)}}},100)}};tarteaucitron.services.matomocloud={key:"matomocloud",type:"analytic",name:"Matomo Cloud (privacy by design)",uri:"https://matomo.org/faq/general/faq_146/",needConsent:true,cookies:["_pk_ref","_pk_cvar","_pk_id","_pk_ses","_pk_hsr","mtm_consent","matomo_ignore","matomo_sessid"],js:function(){"use strict";if(tarteaucitron.user.matomoId===undefined){return}window._paq=window._paq||[];if(tarteaucitron.user.matomoFullTracking===true){window._paq.push(["requireCookieConsent"]);window._paq.push(["setCookieConsentGiven"]);window._paq.push(["trackAllContentImpressions"])}else{window._paq.push(["requireConsent"]);window._paq.push(["setConsentGiven"])}window._paq.push(["setSiteId",tarteaucitron.user.matomoId]);window._paq.push(["setTrackerUrl",tarteaucitron.user.matomoHost+"matomo.php"]);window._paq.push(["enableLinkTracking"]);if(tarteaucitron.user.matomoDontTrackPageView!==true){window._paq.push(["trackPageView"])}if(tarteaucitron.user.matomoCustomJSPath===undefined||tarteaucitron.user.matomoCustomJSPath==""){tarteaucitron.addScript("https://cdn.matomo.cloud/matomo.js","","",true,"defer",true)}else{tarteaucitron.addScript(tarteaucitron.user.matomoCustomJSPath,"","",true,"defer",true)}if(typeof tarteaucitron.user.matomocloudMore==="function"){tarteaucitron.user.matomocloudMore()}var interval=setInterval(function(){if(typeof Matomo==="undefined")return;clearInterval(interval);Matomo.getTracker();var theCookies=document.cookie.split(";");for(var i=1;i<=theCookies.length;i++){var cookie=theCookies[i-1].split("=");var cookieName=cookie[0].trim();if(cookieName.indexOf("_pk_")===0){tarteaucitron.services.matomo.cookies.push(cookieName)}}},100)},fallback:function(){"use strict";if(tarteaucitron.user.matomoId===undefined){return}window._paq=window._paq||[];if(tarteaucitron.user.matomoFullTracking===true){window._paq.push(["requireCookieConsent"])}else{window._paq.push(["requireConsent"])}window._paq.push(["setSiteId",tarteaucitron.user.matomoId]);window._paq.push(["setTrackerUrl",tarteaucitron.user.matomoHost+"matomo.php"]);window._paq.push(["trackPageView"]);window._paq.push(["enableLinkTracking"]);if(typeof tarteaucitron.user.matomocloudMore==="function"){tarteaucitron.user.matomocloudMore()}if(tarteaucitron.user.matomoCustomJSPath===undefined||tarteaucitron.user.matomoCustomJSPath==""){tarteaucitron.addScript("https://cdn.matomo.cloud/matomo.js","","",true,"defer",true)}else{tarteaucitron.addScript(tarteaucitron.user.matomoCustomJSPath,"","",true,"defer",true)}}};tarteaucitron.services.matomotm={key:"matomotm",type:"api",name:"Matomo Tag Manager",uri:"https://matomo.org/privacy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.matomotmUrl===undefined){return}var _mtm=window._mtm=window._mtm||[];_mtm.push({"mtm.startTime":(new Date).getTime(),event:"mtm.Start"});tarteaucitron.addScript(tarteaucitron.user.matomotmUrl)}};tarteaucitron.services.hotjar={key:"hotjar",type:"analytic",name:"Hotjar",uri:"https://help.hotjar.com/hc/en-us/categories/115001323967-About-Hotjar",needConsent:true,cookies:["hjClosedSurveyInvites","_hjDonePolls","_hjMinimizedPolls","_hjShownFeedbackMessage","_hjAbsoluteSessionInProgress","_hjid"],js:function(){"use strict";if(tarteaucitron.user.hotjarId===undefined||tarteaucitron.user.HotjarSv===undefined){return}window.hj=window.hj||function(){(window.hj.q=window.hj.q||[]).push(arguments)};window._hjSettings={hjid:tarteaucitron.user.hotjarId,hjsv:tarteaucitron.user.HotjarSv};var uri="https://static.hotjar.com/c/hotjar-";var extension=".js?sv=";tarteaucitron.addScript(uri+window._hjSettings.hjid+extension+window._hjSettings.hjsv)}};tarteaucitron.services.bingads={key:"bingads",type:"ads",name:"Bing Ads Universal Event Tracking",uri:"https://advertise.bingads.microsoft.com/en-us/resources/policies/personalized-ads",needConsent:true,cookies:["_uetmsclkid","_uetvid","_uetsid"],js:function(){"use strict";if(tarteaucitron.user.bingadsID===undefined){return}window.uetq=window.uetq||[];tarteaucitron.addScript("https://bat.bing.com/bat.js","",function(){var bingadsCreate={ti:tarteaucitron.user.bingadsID};if("bingadsStoreCookies"in tarteaucitron.user){bingadsCreate["storeConvTrackCookies"]=tarteaucitron.user.bingadsStoreCookies}bingadsCreate.q=window.uetq;window.uetq=new UET(bingadsCreate);window.uetq.push("pageLoad");if(typeof tarteaucitron.user.bingadsMore==="function"){tarteaucitron.user.bingadsMore()}})},fallback:function(){if(tarteaucitron.parameters.bingConsentMode===true){if(tarteaucitron.parameters.softConsentMode===false){this.js()}}}};tarteaucitron.services.matterport={key:"matterport",type:"other",name:"Matterport",uri:"https://matterport.com/es/legal/privacy-policy/",needConsent:true,cookies:["__cfduid","ajs_anonymous_id","ajs_group_id","ajs_user_id"],js:function(){"use strict";tarteaucitron.fallback(["matterport"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Matterport iframe",matterport_id=tarteaucitron.getElemAttr(x,"matterportID"),matterport_width=tarteaucitron.getElemAttr(x,"width"),matterport_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",matterport_parameters=tarteaucitron.getElemAttr(x,"parameters"),matterport_allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen"),matterport_frame;if(matterport_id===""){return""}if(matterport_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(matterport_width)+";"}if(matterport_height!==undefined){styleAttr+="height:"+tarteaucitron.getStyleSize(matterport_height)+";"}if(matterport_parameters===""){return""}matterport_frame='";return matterport_frame})},fallback:function(){"use strict";var id="matterport";tarteaucitron.fallback(["matterport"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.adform={key:"adform",type:"ads",name:"Adform",uri:"https://site.adform.com/privacy-center/overview/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.adformpm===undefined||tarteaucitron.user.adformpagename===undefined){return}window._adftrack={pm:tarteaucitron.user.adformpm,divider:encodeURIComponent("|"),pagename:encodeURIComponent(tarteaucitron.user.adformpagename)};tarteaucitron.addScript("https://track.adform.net/serving/scripts/trackpoint/async/")}};tarteaucitron.services.activecampaign={key:"activecampaign",type:"ads",name:"Active Campaign",uri:"https://www.activecampaign.com/privacy-policy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.actid===undefined){return}window.trackcmp_email="";tarteaucitron.addScript("https://trackcmp.net/visit?actid="+tarteaucitron.user.actid+"&e="+encodeURIComponent(trackcmp_email)+"&r="+encodeURIComponent(document.referrer)+"&u="+encodeURIComponent(window.location.href))}};tarteaucitron.services.tawkto={key:"tawkto",type:"support",name:"Tawk.to chat",uri:"https://www.tawk.to/data-protection/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.tawktoId===undefined){return}tarteaucitron.user.tawktoWidgetId=tarteaucitron.user.tawktoWidgetId||"default";window.Tawk_API=window.Tawk_API||{};window.Tawk_LoadStart=new Date;tarteaucitron.addScript("https://embed.tawk.to/"+tarteaucitron.user.tawktoId+"/"+tarteaucitron.user.tawktoWidgetId)}};tarteaucitron.services.getquanty={key:"getquanty",type:"analytic",name:"GetQuanty",uri:"https://www.getquanty.com/mentions-legales/",needConsent:true,cookies:["_first_pageview","eqy_sessionid","eqy_siteid","cluid","eqy_company","cluid","gq_utm","_jsuid"],js:function(){"use strict";if(tarteaucitron.user.getguanty===undefined){return}if(tarteaucitron.user.getquantyAlreadyLoaded!==undefined){return}tarteaucitron.addScript("https://get.smart-data-systems.com/gq?site_id="+tarteaucitron.user.getguanty+"&consent=1")},fallback:function(){"use strict";if(tarteaucitron.user.getguanty===undefined){return}tarteaucitron.user.getquantyAlreadyLoaded=true;tarteaucitron.addScript("https://get.smart-data-systems.com/gq?site_id="+tarteaucitron.user.getguanty+"¬rack=1")}};tarteaucitron.services.emolytics={key:"emolytics",type:"analytic",name:"Emolytics",uri:"https://www.emolytics.com/main/privacy-policy.php",needConsent:true,cookies:["__hssc","__hssrc","__hstc","_ga","_gid","hubspotutk","lang","incap_ses_","nlbi_","visid_incap_"],js:function(){"use strict";if(tarteaucitron.user.emolyticsID===undefined){return}var scriptEmolytics=document.createElement("script");scriptEmolytics.text='var getsmily_id="'+tarteaucitron.user.emolyticsID+'";';document.getElementsByTagName("body")[0].appendChild(scriptEmolytics);tarteaucitron.addScript("https://cdn.emolytics.com/script/emolytics-widget.js")}};tarteaucitron.services.youtubeapi={key:"youtubeapi",type:"video",name:"Youtube (Js API)",uri:"https://policies.google.com/privacy",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://www.youtube.com/player_api")}};tarteaucitron.services.faciliti={key:"faciliti",type:"other",name:"Facil'ITI",uri:"https://www.facil-iti.com/legal-terms/",needConsent:true,cookies:["FACIL_ITI"],js:function(){"use strict";if(tarteaucitron.user.facilitiID===undefined){return}(function(){var fs=document.createElement("script");fs.setAttribute("src","https://cdn.facil-iti.app/tags/faciliti-tag.min.js");fs.dataset.applicationIdentifier=tarteaucitron.user.facilitiID;document.head.appendChild(fs)})()}};tarteaucitron.services.userlike={key:"userlike",type:"support",name:"Userlike",uri:"https://www.userlike.com/en/terms#privacy-policy",needConsent:true,cookies:["uslk_s","uslk_e"],js:function(){"use strict";if(tarteaucitron.user.userlikeKey===undefined){return}tarteaucitron.addScript("//userlike-cdn-widgets.s3-eu-west-1.amazonaws.com/"+tarteaucitron.user.userlikeKey)}};tarteaucitron.services.adobeanalytics={key:"adobeanalytics",type:"analytic",name:"Adobe Analytics",uri:"https://www.adobe.com/privacy/policy.html",needConsent:true,cookies:["s_ecid","s_cc","s_sq","s_vi","s_fid"],js:function(){"use strict";if(tarteaucitron.user.adobeanalyticskey===undefined){return}tarteaucitron.addScript("//assets.adobedtm.com/launch-"+tarteaucitron.user.adobeanalyticskey+".min.js")}};tarteaucitron.services.woopra={key:"woopra",type:"analytic",name:"Woopra Customer Journey Analytics",uri:"https://www.woopra.com/privacy",needConsent:true,cookies:["wooTracker","intercom-session-erbfalba","intercom-id-erbfalba"],js:function(){"use strict";if(tarteaucitron.user.woopraDomain===undefined){return}(function(){var t,i,e,n=window,o=document,a=arguments,s="script",r=["config","track","identify","visit","push","call","trackForm","trackClick"],c=function(){var t,i=this;for(i._e=[],t=0;r.length>t;t++)(function(t){i[t]=function(){return i._e.push([t].concat(Array.prototype.slice.call(arguments,0))),i}})(r[t])};for(n._w=n._w||{},t=0;a.length>t;t++)n._w[a[t]]=n[a[t]]=n[a[t]]||new c;i=o.createElement(s),i.async=1,i.src="//static.woopra.com/js/w.js",e=o.getElementsByTagName(s)[0],e.parentNode.insertBefore(i,e)})("woopra");woopra.config({domain:tarteaucitron.user.woopraDomain});woopra.track()}};tarteaucitron.services.ausha={key:"ausha",type:"video",name:"Ausha",uri:"https://www.ausha.co/protection-personal-data/",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["ausha_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Ausha iframe",player_height=tarteaucitron.getElemAttr(x,"data-height"),podcast_id=tarteaucitron.getElemAttr(x,"data-podcast-id"),player_id=tarteaucitron.getElemAttr(x,"data-player-id"),playlist=tarteaucitron.getElemAttr(x,"data-playlist"),useshowid=tarteaucitron.getElemAttr(x,"data-useshowid"),color=tarteaucitron.getElemAttr(x,"data-color");if(podcast_id===""){return""}var src="https://player.ausha.co/index.html?podcastId="+podcast_id+"&v=3";if(useshowid=="1"){src="https://player.ausha.co/index.html?showId="+podcast_id+"&v=3"}if(playlist&&playlist.length>0)src+="&playlist="+playlist;if(color&&color.length>0)src+="&color="+color.replace("#","%23");if(player_id&&player_id.length>0)src+="&playerId="+player_id;return''});tarteaucitron.addScript("//player.ausha.co/ausha-player.js","ausha-player")},fallback:function(){"use strict";tarteaucitron.fallback(["ausha_player"],function(elem){elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-height"));return tarteaucitron.engage("ausha")})}};tarteaucitron.services.visiblee={key:"visiblee",type:"analytic",name:"Visiblee",uri:"https://confidentiality.visiblee.io/fr/confidentialite",needConsent:true,cookies:["visitor_v2",tarteaucitron.user.visibleedomain,"check","campaign_ref_"+tarteaucitron.user.visibleedomain,"reload_"+tarteaucitron.user.visibleedomain],js:function(){"use strict";if(tarteaucitron.user.visibleeclientid===undefined){return}tarteaucitron.addScript("//www.link-page.info/tracking_"+tarteaucitron.user.visibleeclientid+".js","visiblee")}};tarteaucitron.services.bandcamp={key:"bandcamp",type:"video",name:"Bandcamp",uri:"https://bandcamp.com",readmoreLink:"https://bandcamp.com/privacy",needConsent:true,cookies:["client_id","BACKENDID","_comm_playlist"],js:function(){"use strict";tarteaucitron.fallback(["bandcamp_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Bandcamp iframe",album_id=tarteaucitron.getElemAttr(x,"albumID"),bandcamp_width=tarteaucitron.getElemAttr(x,"width"),bandcamp_height=tarteaucitron.getElemAttr(x,"height"),styleAttr="",attrs=["size","bgcol","linkcol","artwork","minimal","tracklist","package","transparent"],params=attrs.filter(function(a){return tarteaucitron.getElemAttr(x,a)!==""}).map(function(a){if(a&&a.length>0)return a+"="+tarteaucitron.getElemAttr(x,a)}).join("/");if(album_id===""){return""}if(bandcamp_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(bandcamp_width)+";"}if(bandcamp_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(bandcamp_height)+";"}var src="https://bandcamp.com/EmbeddedPlayer/album="+album_id+"/"+params;return''})},fallback:function(){"use strict";tarteaucitron.fallback(["bandcamp_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage("bandcamp")})}};tarteaucitron.services.discord={key:"discord",type:"social",name:"Discord (Server Widget)",needConsent:true,cookies:["__cfruid","__dcfduid","_ga","_gcl_au","OptanonConsent","locale","_gid"],uri:"https://discord.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["discord_widget"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Discord iframe",id=tarteaucitron.getElemAttr(x,"guildID"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var widgetURL="https://discord.com/widget?id="+id;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="discord";tarteaucitron.fallback(["discord_widget"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.maps_noapi={key:"maps_noapi",type:"other",name:"Google Maps",needConsent:true,cookies:["NID","OGPC","1P_JAR","CONSENT"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["googlemaps_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google maps iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var widgetURL="https://www.google.com/maps/embed?pb="+id;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="maps_noapi";tarteaucitron.fallback(["googlemaps_embed"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.hcaptcha={key:"hcaptcha",type:"other",name:"hCaptcha",needConsent:true,cookies:[],uri:"https://www.hcaptcha.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["h-captcha"],"");tarteaucitron.addScript("https://hcaptcha.com/1/api.js","hcaptcha")},fallback:function(){"use strict";var id="hcaptcha";tarteaucitron.fallback(["h-captcha"],tarteaucitron.engage(id))}};tarteaucitron.services.fculture={key:"fculture",type:"video",name:"France Culture",needConsent:true,cookies:["_gid","didomi_token","outbrain_cid_fetch","xtvrn","xtant","YSC","ABTasty","xtan","ABTastySession","xtidc","_ga","VISITOR_INFO1_LIVE","euconsent-v2","v1st","dmvk","ts","VISITOR_INFO1_LIVE","YSC"],uri:"https://www.radiofrance.com/politique-d-utilisation-des-cookies-sur-les-sites-internet-du-groupe-radio-france",js:function(){"use strict";tarteaucitron.fallback(["fculture_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"France culture iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="fculture";tarteaucitron.fallback(["fculture_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.acast={key:"acast",type:"video",name:"Acast",needConsent:true,cookies:["intercom-id-ayi0335i","intercom-session-ayi0335i"],uri:"https://www.acast.com/en/privacy",js:function(){"use strict";tarteaucitron.fallback(["acast_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Acast iframe",id=tarteaucitron.getElemAttr(x,"id1"),id2=tarteaucitron.getElemAttr(x,"id2"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),seek=tarteaucitron.getElemAttr(x,"seek");var widgetURL="https://embed.acast.com/"+id+"/"+id2+"?seek="+seek;var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="acast";tarteaucitron.fallback(["acast_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.mixcloud={key:"mixcloud",type:"video",name:"Mixcloud",needConsent:true,cookies:["UID","_gat","__stripe_mid","_gid","_ga","c","csrftoken","__stripe_sid","mx_t"],uri:"https://www.mixcloud.com/privacy/",js:function(){"use strict";tarteaucitron.fallback(["mixcloud_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Mixcloud iframe",id=tarteaucitron.getElemAttr(x,"id"),hidecover=tarteaucitron.getElemAttr(x,"hidecover"),mini=tarteaucitron.getElemAttr(x,"mini"),light=tarteaucitron.getElemAttr(x,"light"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="mixcloud";tarteaucitron.fallback(["mixcloud_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.gagenda={key:"gagenda",type:"other",name:"Google Agenda",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["gagenda_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google agenda iframe",calendar_data=tarteaucitron.getElemAttr(x,"data"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="gagenda";tarteaucitron.fallback(["gagenda_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.gdocs={key:"gdocs",type:"other",name:"Google Docs",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["gdocs_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google docs iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="gdocs";tarteaucitron.fallback(["gdocs_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.gsheets={key:"gsheets",type:"other",name:"Google Sheets",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["gsheets_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google sheets iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),headers=tarteaucitron.getElemAttr(x,"headers");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="gsheets";tarteaucitron.fallback(["gsheets_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.gslides={key:"gslides",type:"other",name:"Google Slides",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["gslides_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google slides iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),autostart=tarteaucitron.getElemAttr(x,"autostart"),loop=tarteaucitron.getElemAttr(x,"loop"),delay=tarteaucitron.getElemAttr(x,"delay");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="gslides";tarteaucitron.fallback(["gslides_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.gforms={key:"gforms",type:"other",name:"Google Forms",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";tarteaucitron.fallback(["gforms_embed"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Google forms iframe",id=tarteaucitron.getElemAttr(x,"id"),width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";var id="gforms";tarteaucitron.fallback(["gforms_embed"],tarteaucitron.engage(id))}};tarteaucitron.services.goptimize={key:"goptimize",type:"other",name:"Google Optimize",needConsent:true,cookies:["CONSENT","NID"],uri:"https://policies.google.com/privacy",js:function(){"use strict";if(tarteaucitron.user.goptimize===undefined){return}tarteaucitron.addScript("https://www.googleoptimize.com/optimize.js?id="+tarteaucitron.user.goptimize)}};tarteaucitron.services.marketomunchkin={key:"marketomunchkin",type:"api",name:"Marketo munchkin",uri:"https://documents.marketo.com/legal/cookies",needConsent:true,cookies:["OptAnon","_mkto_trk"],js:function(){"use strict";if(tarteaucitron.user.marketomunchkinkey===undefined){return}var didInit=false;function initMunchkin(){if(didInit===false){didInit=true;Munchkin.init(tarteaucitron.user.marketomunchkinkey)}}var s=document.createElement("script");s.type="text/javascript";s.async=true;s.src="//munchkin.marketo.net/munchkin.js";s.onreadystatechange=function(){if(this.readyState=="complete"||this.readyState=="loaded"){initMunchkin()}};s.onload=initMunchkin;document.getElementsByTagName("head")[0].appendChild(s)}};tarteaucitron.services.outbrain={key:"outbrain",type:"ads",name:"Outbrain",uri:"https://www.outbrain.com/fr/advertisers/guidelines/",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://widgets.outbrain.com/outbrain.js")}};tarteaucitron.services.affilae={key:"affilae",type:"ads",name:"Affilae",uri:"https://affilae.com/en/privacy-cookie-policy/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.affilae===undefined){return}window._ae={pid:tarteaucitron.user.affilae};tarteaucitron.addScript("https://static.affilae.com/ae-v3.5.js")}};tarteaucitron.services.canalu={key:"canalu",type:"video",name:"Canal-U.tv",uri:"https://www.canal-u.tv/conditions-generales-utilisations",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["canalu_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Canal-u.tv iframe",video_title=tarteaucitron.getElemAttr(x,"videoTitle"),frame_url="https://www.canal-u.tv/embed/"+video_title,width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";tarteaucitron.fallback(["canalu_player"],function(elem){return tarteaucitron.engage("canalu")})}};tarteaucitron.services.webtvnu={key:"webtvnu",type:"video",name:"WebTV Normandie Université",uri:"https://docs.google.com/document/d/1tpVclj4QBoAq1meSZgYrpNECwp7dbmb_IhICY3sTl9c/edit",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["webtvnu_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"WebTV Normandie Université iframe",frame_url="https://webtv.normandie-univ.fr/permalink/"+tarteaucitron.getElemAttr(x,"videoID")+"/iframe/",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return''})},fallback:function(){"use strict";tarteaucitron.fallback(["webtvnu_player"],function(elem){return tarteaucitron.engage("webtvnu")})}};tarteaucitron.services.studizz={key:"studizz",type:"support",name:"Studizz Chatbot",uri:"https://group.studizz.fr/",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.studizzToken===undefined){return}tarteaucitron.addScript("https://webchat.studizz.fr/webchat.js?token="+tarteaucitron.user.studizzToken)}};tarteaucitron.services.meteofrance={key:"meteofrance",type:"api",name:"Météo France",uri:"https://meteofrance.com/politique-de-confidentialite",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_meteofrance"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")||"Météo France iframe",width=tarteaucitron.getElemAttr(x,"width"),height=tarteaucitron.getElemAttr(x,"height"),insee=tarteaucitron.getElemAttr(x,"data-insee"),allowfullscreen=tarteaucitron.getElemAttr(x,"allowfullscreen");var styleAttr=(width!==""?"width:"+tarteaucitron.getStyleSize(width)+";":"")+(height!==""?"height:"+tarteaucitron.getStyleSize(height)+";":"");return'"})},fallback:function(){"use strict";var id="meteofrance";tarteaucitron.fallback(["tac_meteofrance"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.m6meteo={key:"m6meteo",type:"api",name:"M6 Météo",uri:"https://gdpr.m6tech.net/charte-confidentialite-m6-web-meteocity.pdf",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.fallback(["tac_m6meteo"],function(x){var id=tarteaucitron.getElemAttr(x,"data-id");tarteaucitron.addScript("https://www.meteocity.com/widget/js/"+id);return''})},fallback:function(){"use strict";var id="m6meteo";tarteaucitron.fallback(["tac_m6meteo"],function(elem){return tarteaucitron.engage(id)})}};tarteaucitron.services.mtcaptcha={key:"mtcaptcha",type:"api",name:"MTcaptcha",uri:"https://www.mtcaptcha.com",readmoreLink:"https://www.mtcaptcha.com/faq-cookie-declaration",needConsent:true,cookies:["mtv1Pulse","mtv1ConfSum","mtv1Pong"],js:function(){if(tarteaucitron.user.mtcaptchaSitekey===undefined){return}window.mtcaptchaConfig={sitekey:tarteaucitron.user.mtcaptchaSitekey};tarteaucitron.addScript("https://service.mtcaptcha.com/mtcv1/client/mtcaptcha.min.js");tarteaucitron.addScript("https://service2.mtcaptcha.com/mtcv1/client/mtcaptcha2.min.js")}};tarteaucitron.services.archive={key:"archive",type:"video",name:"Internet Archive",uri:"https://archive.org/about/terms.php",needConsent:true,cookies:["abtest-identifier","donation-identifier"],js:function(){"use strict";tarteaucitron.fallback(["archive_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Internet Archive iframe",video_id=tarteaucitron.getElemAttr(x,"data-videoID"),video_width=tarteaucitron.getElemAttr(x,"data-width"),video_height=tarteaucitron.getElemAttr(x,"data-height"),styleAttr="",video_frame;if(video_id===""){return""}if(video_width!==""){styleAttr+="width:"+tarteaucitron.getStyleSize(video_width)+";"}if(video_height!==""){styleAttr+="height:"+tarteaucitron.getStyleSize(video_height)+";"}video_frame='';return video_frame})},fallback:function(){"use strict";var id="archive";tarteaucitron.fallback(["archive_player"],function(elem){elem.style.width=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-width"));elem.style.height=tarteaucitron.getStyleSize(tarteaucitron.getElemAttr(elem,"data-height"));return tarteaucitron.engage(id)})}};tarteaucitron.services.gallica={key:"gallica",type:"other",name:"Gallica",uri:"https://gallica.bnf.fr/edit/und/conditions-dutilisation-des-contenus-de-gallica",needConsent:true,cookies:["dtCookie","dtLatC","dtPC","dtSa","rxVisitor","rxvt","xtvrn"],js:function(){"use strict";tarteaucitron.fallback(["gallica_player"],function(x){var frame_title=tarteaucitron.getElemAttr(x,"title")?tarteaucitron.getElemAttr(x,"title"):"Gallica iframe",src=tarteaucitron.getElemAttr(x,"data-src"),style=tarteaucitron.getElemAttr(x,"data-style"),frame;if(src===""){return""}frame='';return frame})},fallback:function(){"use strict";var id="gallica";tarteaucitron.fallback(["gallica_player"],function(elem){elem.style=tarteaucitron.getElemAttr(elem,"data-style");return tarteaucitron.engage(id)})}};tarteaucitron.services.crisp={key:"crisp",type:"other",name:"Crisp Chat",uri:"https://help.crisp.chat/en/article/crisp-chatbox-cookie-ip-policy-1147xor/",needConsent:false,cookies:["crisp-client","__cfduid"],js:function(){"use strict";if(tarteaucitron.user.crispID===undefined){return}window.$crisp=[];window.CRISP_WEBSITE_ID=tarteaucitron.user.crispID;tarteaucitron.addScript("https://client.crisp.chat/l.js")}};tarteaucitron.services.microanalytics={key:"microanalytics",type:"analytic",name:"MicroAnalytic",uri:"https://microanalytics.io/page/privacy",needConsent:false,cookies:[],js:function(){"use strict";if(tarteaucitron.user.microanalyticsID===undefined){return}tarteaucitron.addScript("https://microanalytics.io/js/script.js",tarteaucitron.user.microanalyticsID,undefined,true,"data-host","https://microanalytics.io")}};tarteaucitron.services.facebookcustomerchat={key:"facebookcustomerchat",type:"social",name:"Facebook (Customer Chat)",uri:"https://www.facebook.com/policies/cookies/",needConsent:true,cookies:["act","c_user","datr","dpr","presence","sb","wd","xs","/tr"],js:function(){"use strict";if(tarteaucitron.user.facebookChatID===undefined){return}tarteaucitron.fallback(["fb-customerchat"],"");window.fbAsyncInit=function(){FB.init({appId:tarteaucitron.user.facebookChatID,autoLogAppEvents:!0,xfbml:!0,version:"v3.0"})};tarteaucitron.addScript("https://connect.facebook.net/"+tarteaucitron.getLocale()+"/sdk/xfbml.customerchat.js","facebook-jssdk")},fallback:function(){"use strict";var id="facebookcustomerchat";tarteaucitron.fallback(["fb-customerchat"],tarteaucitron.engage(id))}};tarteaucitron.services.weborama={key:"weborama",type:"analytic",name:"Weborama",uri:"https://weborama.com/faq-cnil-avril-2021/",needConsent:true,cookies:[],js:function(){"use strict";tarteaucitron.addScript("https://cstatic.weborama.fr/js/advertiserv2/adperf_conversion.js")}};tarteaucitron.services.tiktok={key:"tiktok",type:"analytic",name:"Tiktok",uri:"https://www.tiktok.com/legal/tiktok-website-cookies-policy",needConsent:true,cookies:[],js:function(){"use strict";if(tarteaucitron.user.tiktokId===undefined){return}!function(w,d,t){w.TiktokAnalyticsObject=t;var ttq=w[t]=w[t]||[];ttq.methods=["page","track","identify","instances","debug","on","off","once","ready","alias","group","enableCookie","disableCookie"],ttq.setAndDefer=function(t,e){t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}};for(var i=0;i + + + + + + + diff --git a/themes/airspace-hugo/layouts/_default/contact.html b/themes/airspace-hugo/layouts/_default/contact.html deleted file mode 100644 index e48151e..0000000 --- a/themes/airspace-hugo/layouts/_default/contact.html +++ /dev/null @@ -1,80 +0,0 @@ -{{ define "main" }} - -{{ partial "page-title.html" . }} - -
          -
          - {{ with site.Params.contact.form }}{{ if .enable -}} -
          -
          -
          -
          -
          - - -
          -
          - - -
          -
          - - -
          - {{ if .use_netlify -}} -
          - -
          - {{- end }} - {{ if .use_recaptcha -}} -
          - -
          - {{- end }} -
          -
          -
          -
          -
          - - -
          - -
          -
          -
          -
          - {{- end }}{{ end }} -
          - {{ with site.Params.contact -}} -
          -
          -

          {{ i18n "address_title" }}

          -
            - {{ $add_address_descriptors := .address_descriptors }} - {{ with site.Params.location }}
          • {{ if $add_address_descriptors }}{{ i18n "location" | printf "%s: " }}{{ end }}
            {{ . | markdownify }}
          • {{ end }} - {{ with site.Params.email }}
          • {{ if $add_address_descriptors }}{{ i18n "email" | printf "%s: " }}{{ end }}{{ partial "cloak_email" . }}
          • {{ end }} - {{ with site.Params.phone }}
          • {{ if $add_address_descriptors }}{{ i18n "phone" | printf "%s: " }}{{ end }}{{ . }}
          • {{ end }} -
          - -
          -
          - {{- end }} - {{ if site.Params.gmap.enable -}} -
          -
          -
          -
          -
          -
          -
          - {{- end }} -
          -
          -
          - -{{ end }} diff --git a/themes/airspace-hugo/layouts/partials/head.html b/themes/airspace-hugo/layouts/partials/head.html index eca144e..ebe6ac3 100644 --- a/themes/airspace-hugo/layouts/partials/head.html +++ b/themes/airspace-hugo/layouts/partials/head.html @@ -147,6 +147,13 @@ {{ end }} {{ end }} + + + + + + + {{ if site.Params.baidu.enable }} {{ with site.Params.baidu.analytics_id }}