/*  ki-page leopard-ki - version leo.page 
    ak 2026
    version 3.0 - new layout ms */

@font-face {
	font-family: "Inter";
	src: url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
}

@font-face {
	font-family: "Inter";
	font-style: italic;
	src: url('fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
}

:root {
  --col-border: rgba(13,27,42,0.09);
  --col-dialog-bg: white;
  --col-form-elements: #131f5b;
  --col-form-elements-hover: #191e3b;
  /* --col-form-elements-hover: #f2e9d1; */
  --col-form-elements-label: white;
  --col-hero-bg: #f7f6f3;
  --col-hero-text-dimmed: rgba(13,27,42,0.58);
  --col-inquiries-bg: #f7f6f3;
  --col-live-dot: #28c840;
  --col-menu-bg: white;
  --col-menu-text: rgba(13,27,42,0.58);
  /* --col-menu-text: #131f5b; */
  --col-menu-highlight-bg: white;
  --col-menu-highlight-text: #f2e9d1;
  /* --font-color: #191e3b; */
  --font-color: rgba(13,27,42,0.58);
  --font-color-dimmed: #aaa;
  --font-color-strong: #191e3b;
  --font-size: 15px;
  --width-chatbot: 980px;
}

/* :root {
  --col-dialog-bg: #eee;
  --col-form-elements: #fbb021;
  --col-form-elements-hover: #e09a1e;
  --col-form-elements-label: white;
  --col-menu-bg: #1a1d3b;
  --col-menu-text: #fff;
  --col-menu-highlight-bg: #1a1d3b;
  --col-menu-highlight-text: #fbb021;
  --font-color: #191e3b;
  --font-color-dimmed: #aaa;
  --font-size: 18px;
  --width-chatbot: 980px;
} */


* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--col-form-elements) transparent;
}

a {
  color: var(--col-form-elements);
  cursor: pointer;
  transition: all 0.5s ease-in-out 0s;
}
a:hover {
  color: var(--col-form-elements-hover);
}
/* a:visited {
  color: var(--col-form-elements);
} */

b, strong {
  color: var(--font-color-strong);
}

body {
  background-color: transparent;
  color: var(--font-color);
  font-family: 'DM Sans', Inter, 'Roboto', Verdana, Geneva, Tahoma, sans-serif;
  font-size: var(--font-size);
  height: 100%;
  min-height: -webkit-fill-available;
  line-height: 1.5rem;
  width: 100%;
  margin: 0;
  overflow: hidden;
  /* overflow-y: auto; */
  padding: 0;
  position: relative;
  z-index: 1;
}

button:active {
  filter: brightness(1.2);
  transform: translateY(0.22rem);
}

button:disabled {
  background-color: #ccc;
  border-color: var(--font-color-dimmed);
  color: var(--font-color-dimmed);
  cursor: not-allowed;
}

dialog {
  background-color: var(--col-dialog-bg);
  border-radius: 0.4rem;
  border: none;
  display: none; 
  flex-direction: column; 
  font-size: 0.8rem;
  max-height: 80vh;
  max-width: var(--width-chatbot);
  min-width: 400px;
  opacity: 0;
  padding-top: 2rem;
  translate: 0 5vh;
  transition-property: overlay display opacity;
  transition-duration: 1s;
  transition-behavior: allow-discrete;
  width: fit-content;
}

dialog > div {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  /* flex: 1; */
  gap: 0;
  height: auto;
  /* height: 100%; */
  min-height: 1rem;
}

dialog[open] {
  display: flex; 
  opacity: 1;
  translate: 0 0;
}

dialog[open]::backdrop {
  opacity: 0.75;
}

dialog::backdrop {
  transition-property: opacity display overlay;
  transition-duration: 1s;
  transition-behavior: allow-discrete;
  opacity: 0;
  background-image: linear-gradient(-45deg, black, #8a8a8a);
}

dialog button {
  margin: 1rem auto 0 auto;
  width: fit-content;
  min-width: 120px;
  padding: 0.8rem 2rem;
}



/* Close button (X) for all dialogs */
dialog .btn_DialogClose {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
	/* top: 0.73rem; */
	/* right: 0.73rem; */
	top: 0.1rem;
	right: 0.1rem;
  background: none;
  border: none;
  color: var(--col-form-elements);
  cursor: pointer;
  font-size: 1.5rem;
  /* font-size: 28px; */
  line-height: 1;
  /* width: 36px;
  height: 36px; */
  padding: 0;
  margin: 0;
  min-width: auto;
  width: 2rem;
  height: 2rem;
  transition: background-color 0.5s ease;
  z-index: 999;
}

dialog .btn_DialogClose:hover {
  background-color: #e0e0e0;
}

dialog .btn_DialogClose:active {
  background-color: #d0d0d0;
}


/* ─── Merkzettel button (topbar) ─── */

.btn_Merkzettel {
  align-items: center;
  color: var(--font-color-strong);
  border: none;
  border-radius: 0.4rem;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 0.91rem;
  font-weight: 600;
  gap: 0.4rem;
  min-width: unset;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  padding-top: 0.53rem;
  padding-bottom: 0.53rem;
  /* padding: 8px 18px; */
  text-decoration: none;
  transition: background .15s;
}

.btn_Merkzettel:hover {
  background: var(--col-form-elements);
  color: white;
}


dialog form {
  padding: 0; 
  padding-bottom: 1rem;
  padding-top: 1rem;
}


dialog form input,
dialog form select,
dialog form textarea {
  margin-bottom: 0.3rem;
  width: 100%;
  max-width: 30rem;
}

dialog form input:is([type="checkbox"]) {
  background-color: black; 
  flex-grow: 0; 
  margin-bottom: 0 !important;
}

dialog form label {
  display: flex; 
  align-items: center; 
  /* justify-content: center; */
}

dialog h1 {
  font-size: 1.5rem !important;
  font-weight: normal;
  line-height: 1.5rem;
  margin-top: 0rem;
}

dialog h2 {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5rem;
  margin-top: 0rem;
}

h1 {
  color: var(--font-color-strong);
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.7rem;
}

h2 {
  color: var(--font-color-strong);
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.7rem;
  margin-top: 2rem;
  text-transform: uppercase;
}

h3 {
  color: var(--font-color-strong);
  font-size: 1.05rem;
  font-weight: bold;
  line-height: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4 {
  color: var(--font-color-strong);
  font-size: 1.05rem;
  font-weight: bold;
  line-height: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: none;
  height: 1px;
  background-color: var(--col-border);
}

html {
  height: 100%;
  /* min-height: -webkit-fill-available; */
  background-color: transparent;
  font-size: var(--font-size);
}

img {
  max-width: 100%;
}

input, select, textarea {
  color: var(--font-color-strong);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  flex-grow: 1;
  padding: 0.7rem;
  border: 2px solid var(--col-border);
  border-radius: 0.4rem;
  margin-right: 0.7rem;
}

input:focus, textarea:focus {
  outline: 1px solid var(--col-form-elements);
}

input:is([type="checkbox"], [type="radio"]) {
  accent-color: var(--col-form-elements);
  margin-right: 0.7rem;
  width: unset !important;
  height: 1rem;
}

input:is([type="reset"], [type="button"], [type="submit"]), button {
  background-color: var(--col-form-elements);
  border: none;
  border-radius: 0.4rem;
  color: var(--col-form-elements-label);
  cursor: pointer;
  flex-grow: 0;
  font-size: 1rem;
  margin-right: 0;
  min-width: 5rem;
  padding: 0.7rem 1.5rem;
  transition: all 0.5s ease-in-out 0s;
}

input:is([type="reset"], [type="button"], [type="submit"]):hover, button:hover {
  background-color: var(--col-form-elements-hover);
}

input::placeholder, input::-webkit-input-placeholder {
  color: var(--font-color-dimmed); 
  opacity: 1;
}

video {
  width: 100%;
}



.a_SmartLink {
  text-decoration: none;
}

.a_white, .a_white:visited, .a_white:hover {
  color: var(--font-color);
}

.blink {
  animation: blink 0.4s linear;
}

.bold {
  font-weight: bold;
}


.btn_Close {
  border-radius: 50%;
  position: absolute;
  top: 0.33rem;
  right: 0.33rem;
  margin: unset;
  min-width: unset;
  padding: 0.4rem !important;
  width: 2rem;
  height: 2rem;
}


.btn_SocialMedia {
  display: inline-flex;
  place-items: center;
  place-content: center;
  background: #eee;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  height: 3.33rem;
  width: 3.33rem;
  min-width: unset;
}

.btn_SocialMedia img {
  height: 2rem;
  width: 2rem;
}


._btn_Submit {
  background: var(--col-form-elements);
  border: none;
  border-radius: 0.4rem; 
  color: white;
  cursor: pointer;
  flex-shrink: 0;
  height: 2.78rem;
  letter-spacing: .2px;
  min-width: unset;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition: background .3s;
  white-space: nowrap;
}


.btn_SpeechInput {
  background: var(--col-form-elements);
  background-image: url('graph/icons/ic_mic.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border: 0;
  border-radius: 50%;
  height: 42px;
  width: 42px;
  letter-spacing: .2px;
  /* margin: 0; */
  min-width: unset;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  /* position: relative; */
  transition: all .3s;
  /* width: auto; */
}

.btn_SpeechInput:hover {
  background-color: var(--col-form-elements-hover);
  border-color: var(--font-color);
  color: var(--font-color);
  /* border-color: var(--col-form-elements);
  color: var(--col-form-elements); */
}

.btn_SpeechInput.listening {
  background-color: rgb(223 50 50);
  animation: none;
}

.btn_SpeechInput.listening::after {
  content: '';
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0.278rem solid rgb(223 50 50);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation: pulsate infinite 1.2s;
}

.btn_Submit {
  background: var(--col-form-elements);
  border: none;
  border-radius: 0.4rem; 
  color: white;
  cursor: pointer;
  flex-shrink: 0;
  height: 2.78rem;
  letter-spacing: .2px;
  min-width: unset;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition: background .3s;
  white-space: nowrap;

  /* font-weight: 600;
  height: 2.78rem;
  letter-spacing: .2px;
  min-width: unset;
  padding: 0 1.5rem; */
}


.center{
  text-align: center;

}

.cursorHand {
  cursor: pointer;
}


.div_AnswerHeader {
  background: transparent;
  border-bottom: 1px solid var(--col-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* height: 280px; */
  /* margin-left: calc(-50vw + 50%); */
  overflow: hidden;
  padding-top: 1.3rem;
  padding-right: 1.3rem;
  padding-bottom: 1.3rem;
  padding-left: 0.67rem;
    /* padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 10px; */
  /* width: 100vw; */
}

.div_AnswerHeader img, .div_AnswerText img {
  /* width: 100%; */
}

.div_AnswerHeader img {
  border-radius: 1rem;
  /* height: 100%;
  object-fit: cover; */
  order: 2;
  /* width: 100%; */
}

.div_AnswerHeader_Claim {
  align-items: flex-start;
  color: var(--font-color-strong);
  display: flex;
  flex-direction: column;
  font-family: 'Instrument Serif', serif;
  font-size: 3.3rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: -.3px;
  line-height: 1.22;
  max-width: 100%;
  order: 1;
  padding: 36px;
  position: static;
  text-shadow: none;
}

.div_AnswerText {
  flex-grow: 1;
  margin: auto;
  padding: 1rem;
  padding-top: 0;
  /* padding-bottom: 3rem; */
  width: var(--width-chatbot);
}

.div_AnswerText h1 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  /* line-height: 1.7rem; */
  margin-top: 1rem;
}

.div_AnswerText li {
  margin-bottom: 1rem;
}

.div_BottomLine {
  align-items: center;
  color: var(--col-menu-text);
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  line-height: 1rem;
  margin: 0 auto;
  max-width: var(--width-chatbot);
  padding: 4px 2rem 6px;
  width: 100%;
}


.div_BottomMenu {
  font-size: 0.73rem;
}

.div_BottomMenu span:hover {
  color: var(--font-color);
  text-decoration: none;
}


.div_Caution {
  flex: 1;
  font-size: 0.73rem;
  text-align: center;
}

.div_Centered {
  font-weight: bold;
  line-height: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}

.div_Chatbot {
  background: transparent;
  border-radius: 0.7rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 1rem);
  height: -webkit-fill-available;
  margin: 1rem auto;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  max-height: calc(100vh - 1rem);
}

.div_Contact {
  background: var(--col-inquiries-bg);
  /* border: 1px solid var(--font-color); */
  border: 1px solid var(--col-border);
  border-radius: 0.5rem;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  width: var(--width-chatbot);
}

.div_Contact a {
  text-decoration: none;
}


/* ─── Convo bar ─── */

.div_ConvoBar {
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--col-border);
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  padding-top: 7px;  
  padding-bottom: 7px;
  padding-left: 0;
  padding-right: 2rem;
}

.div_ConvoLink {
  align-items: center;
  color: var(--font-color-dimmed);
  cursor: pointer;
  display: flex;
  font-size: 0.83rem;
  gap: 0.4rem;
  transition: color .12s;
}

.div_ConvoLink:hover {
  color: var(--col-form-elements);
}

.div_ConvoLink svg {
  flex-shrink: 0;
}

.div_ConvoLink:not(.share)::before {
  background-color: currentColor;
  content: '';
  display: inline-block;
  flex-shrink: 0;
  height: 0.83rem;
  mask-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6.5' cy='5' r='3' stroke='black' stroke-width='1.3'/%3E%3Cpath d='M1.5 11.5c0-2.76 2.24-5 5-5s5 2.24 5 5' stroke='black' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6.5' cy='5' r='3' stroke='black' stroke-width='1.3'/%3E%3Cpath d='M1.5 11.5c0-2.76 2.24-5 5-5s5 2.24 5 5' stroke='black' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  width: 0.83rem;
}

.div_ConvoLink.share {
  /* opacity: 0; */
  /* pointer-events: none; */
  transition: opacity .3s;
}

.div_ConvoLink.share::before {
  background-color: currentColor;
  content: '';
  display: inline-block;
  flex-shrink: 0;
  height: 0.83rem;
  mask-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='2.5' r='1.5' stroke='black' stroke-width='1.2'/%3E%3Ccircle cx='3' cy='6.5' r='1.5' stroke='black' stroke-width='1.2'/%3E%3Ccircle cx='10' cy='10.5' r='1.5' stroke='black' stroke-width='1.2'/%3E%3Cpath d='M4.4 5.7L8.7 3.3M4.4 7.3L8.7 9.7' stroke='black' stroke-width='1.2'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='2.5' r='1.5' stroke='black' stroke-width='1.2'/%3E%3Ccircle cx='3' cy='6.5' r='1.5' stroke='black' stroke-width='1.2'/%3E%3Ccircle cx='10' cy='10.5' r='1.5' stroke='black' stroke-width='1.2'/%3E%3Cpath d='M4.4 5.7L8.7 3.3M4.4 7.3L8.7 9.7' stroke='black' stroke-width='1.2'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  width: 0.83rem;
}

.div_ConvoLink.share.on {
  opacity: 1;
  pointer-events: auto;
}


/* .div_ContactForm {
  border: 1px solid var(--font-color);
  border-radius: 0.5rem;
  overflow-y: auto;
  padding: 1rem;
  width: calc(var(--width-chatbot) - 15%);
  max-width: 100%;
}

.div_ContactForm h2 {
  margin-top: 0rem;
}

.div_ContactForm input, .div_ContactForm textarea {
  border: 1px solid var(--font-color);
  margin-bottom: 0.5rem;
  width: 100%;
} */

/* Cookie Panel */
.div_CookiePanel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--col-dialog-bg);
  border-top: 2px solid var(--col-form-elements);
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
  padding: 1rem;  
  padding-bottom: 1.5rem;
  z-index: 10000;  
}
.div_CookiePanel a {
  text-decoration: none;  
}

.div_CookiePanel_Content {
  max-width: var(--width-chatbot);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.div_CookiePanel_Buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn_CookieAccept,
.btn_CookieDecline {
  padding: 0.5rem 1rem;
  border: none;
  /* border-radius: 0.4rem;
  cursor: pointer; */
  font-size: 0.8rem;
  /* transition: background-color 0.3s ease; */
}

.btn_CookieAccept {
  background-color: var(--col-form-elements);
  color: white;
}

.btn_CookieAccept:hover {
  background-color: var(--col-form-elements-hover);
}

.btn_CookieDecline {
  background-color: transparent;
  color: var(--col-form-elements);
  border: 1px solid var(--col-form-elements);
}

.btn_CookieDecline:hover {
  background-color: var(--col-form-elements);
  color: white;
}

/* #lnk_CookiePrivacy {
  color: var(--col-form-elements);
  text-decoration: none;
  font-size: 0.8rem;
}

#lnk_CookiePrivacy:hover {
  text-decoration: underline;
} */


.div_Dialog_Footer {
  flex-shrink: 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: auto;
}

.div_Dialog_Text {
  flex: 1;  
  margin-bottom: 1rem;
  outline: none;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.div_Dialog_Text .div_AnswerHeader {
  width: 100% !important;
  margin: 0 !important;
}

.div_Dialog_Text .div_AnswerText {
  width: 100% !important;
  margin: 0 !important;
}

.div_dlgSmartLinks_buttons {
  display: flex;
  justify-content: space-around;
  width: 100%;
  /* gap: 1rem; */
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.div_Error {
  background: #f8d7da;
  border-radius: 0.5rem;
  color: #721c24;
  margin-top: 1rem;
  padding: 1rem;
}

.div_Example {
  align-items: center;
  background: white;
  border: 1px solid var(--col-border);
  border-radius: 100px;
  color: var(--font-color);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.85rem;
  margin-top: 0px;
  margin-right: 0.53rem;
  margin-bottom: 0.67rem;
  margin-left: 0px;
  padding-top: 0.47rem;
  padding-right: 0.93rem;
  padding-bottom: 0.47rem;
  padding-left: 2.2rem;
  /* margin: 0 8px 10px 0;
  padding: 7px 14px 7px 2.2rem; */
  position: relative;
  transition: all 0.3s ease;
}

.div_Example:hover {
  background: var(--col-inquiries-bg);
  color: var(--col-form-elements-hover);
}

.div_Example::before {
  content: '';
  background-image: url('graph/favicon.ico');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  left: 0.67rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
}

._div_Example::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--col-form-elements);
}



.div_Footer {
  background: white;
  border-top: 1px solid var(--col-border);
  flex-shrink: 0;
  margin: 0 auto;
  max-width: var(--width-chatbot);
  padding: 0 0 8px;
  position: relative;
  width: 100%;
}

.div_Footer form, .div_Footer_inputs {
  align-items: center;
  display: flex;
  gap: 8px;
  padding: 8px 2rem 0;
  width: 100%;
}

#user_question {
  /* background: var(--col-hero-bg); */
  border: 1px solid var(--col-border);
  border-radius: 8px;
  color: var(--font-color-strong);
  flex-grow: 1;
  margin-right: 0;
  /* padding: 11px 16px; */
  
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.73rem;
  padding-bottom: 0.73rem;
  
}

.div_Header {
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--col-border);
  color: var(--font-color);
  display: flex;
  flex-shrink: 0;
  gap: 0;
  height: 4rem;
  /* height: 60px; */
  padding: 0 calc((100% - var(--width-chatbot)) / 2);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
}

.div_Header > a {
  align-items: center;
  color: var(--font-color);
  display: flex;
  flex-shrink: 0;
  font-weight: 700;
  gap: 0.5rem;
  letter-spacing: -.2px;
  margin-right: 2rem;
  text-decoration: none;
}

.div_Header img {
  height: 1.5rem;
  margin-right: 0;
}

.div_Header_Icons img {
  height: 1.67rem;
  margin-left: 1rem;
}

.div_Header_Icons img:last-child {
  margin-right: 0.33rem;
}


/* ─── Header right group ─── */

.div_Header_Right {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 0.67rem;
  margin-left: auto;
}

.div_LiveIndicator {
  align-items: center;
  color: #1a8a2a;
  display: flex;
  font-size: 0.73rem;
  font-weight: 600;
  gap: 0.4rem;
  white-space: nowrap;
}

.div_LiveDot {
  animation: liveDotPulse 2s ease-in-out infinite;
  background: var(--col-live-dot);
  border-radius: 50%;
  display: inline-block;
  height: 0.47rem;
  width: 0.47rem;
}


.div_Inquiries {
  /* background-color: #fbb021; */
  background-color: var(--col-inquiries-bg);
  border-radius: 0.2em;
  margin-bottom: 0.33rem;
  padding: 0.2em 0.5em;
  width: fit-content;
}



.div_MainMenu {
  align-items: center;
  background-color: transparent;
  display: flex;
  flex: 1;
  position: relative;
}

.div_MainMenu a {
  color: var(--font-color);
  /* margin-right: 1rem; */
  text-decoration: none;
}

.div_MainMenu div {
  /* margin: auto;
  padding-left: calc(1rem - 10px);
  padding-right: calc(1rem - 10px);
  width: var(--width-chatbot); */
}

.div_Messages {
  flex-grow: 1;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.div_MessageText {
  /* padding-bottom: 2rem; */
}

.div_MerkzettelContainer {
  background: transparent;
  border-radius: 0.4rem;
  display: flex;
  flex-direction: column;
  /* padding: 2rem;
  padding-right: 1rem; */
  position: relative;
}

.div_MerkzettelContainer button {
  margin-bottom: 0.5rem;
}

/* .div_MerkzettelContainer form {
  background-color: transparent;
  border-radius: 0.4rem;
  padding: 1rem;
  text-align: center;  
} */

.div_MerkzettelContainer h1 {
  font-weight: bold;
  margin-top: 0;
  padding-right: 1rem;
}

.div_MerkzettelContainer h2 {
  margin-top: 0;
}

.div_MerkzettelContainer img {
  border-radius: 0.4rem;
  margin-bottom: 2rem
}

.div_Merkzettel_Answer {
  color: var(--col-form-elements);
  padding-left: 2rem;
}

.div_Merkzettel_Answers {
  margin-top: 2rem;
}

.div_Merkzettel_OrderPDF {
  border: 1px solid var(--col-form-elements);
  border-radius: 0.4rem;
  cursor: pointer;
  margin-top: 2rem;
  padding: 1rem;
}

.div_Merkzettel_Question {
  border: 1px solid var(--col-form-elements);
  border-radius: 0.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  padding: 1rem;
}

.div_Merkzettel_Questions {
  padding-left: 2rem;
  padding-right: 2rem;
}

.div_Merkzettel_Questions li {
  margin-bottom: 1rem;
}

.div_Merkzettel_Text {
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 1rem;
}

.div_Merkzettel_Text button {
  margin-bottom: 0.5rem;
  width: 100%;
}

.div_Overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.div_Overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid;
  /* border-image: conic-gradient(from 0deg, #ffffff, #9c27b0, #ff1493, #9c27b0, #ffffff) 3; */
  /* border-image: conic-gradient(from 0deg, #c8fbff, #9c27b0, #ff1493, #9c27b0, #c8fbff) 3; */
  border-image: conic-gradient(from 0deg, #fbb021, #1a1d3b, #ff1493, #1a1d3b, #fbb021) 3;
  /* border-image: conic-gradient(from 0deg, #1a1d3b, #9c27b0, #ff1493, #9c27b0, #1a1d3b) 1; */
  animation: hue-shift 3s linear infinite;
  pointer-events: none;
}

@keyframes hue-shift {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.div_PoweredBy {
  color: #81838d;
  font-size: 0.73rem;
}

.div_PoweredBy a {
  text-decoration: none;
  color: var(--font-color-strong);
}

.div_PoweredBy a:hover {
  color: var(--col-form-elements-hover);
}

.div_PoweredBy img {
  width: 4.5rem;
}

.div_ProductCode {
	border: 1px solid limegreen;
  border-radius: 10px;
	color: limegreen;	
	display: inline-block;
	padding: 0.33rem;
}

.div_Quelle {
  border: 1px solid var(--font-color-dimmed);
  border-radius: 0.24rem;
  color: var(--font-color-dimmed);
  cursor: pointer;
  /* display: inline-block; */
  font-size: 0.8rem;
  margin: 0.33rem 0;
  padding: 0.13rem 0.33rem;
  /* margin: 5px 0;
  padding: 2px 5px;   */
  width: fit-content;
}



.div_Question {
  /* color: var(--font-color-dimmed); */
  /* cursor: pointer; */
  font-size: 0.8rem;
  padding: 0rem;
  margin-bottom: 1rem;
}
.div_Question a {
  text-decoration: none;
}


.div_small {
    font-size: 0.73rem;
    line-height: 1rem;
    margin-bottom: 1rem;
}
/*
.div_SpeechBubble {
  background: transparent;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
  max-width: 100%;
  padding: 10px 15px;
  position: relative;
  text-align: left;
}

.div_SpeechBubble img, .div_SpeechBubble video, .div_SpeechBubble iframe {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
*/
.div_StaticPage h3 {
  margin-top: 2rem;
}

.div_TrustElement {
  position: absolute !important;
  left: calc((100% - var(--width-chatbot))/2);
  top: 24%;  
}

.div_Video_iframe {
  padding: 56.25% 0 0 0;
  position: relative;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.div_VideoBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.div_VideoBg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: -1;
}

.div_VideoBg_orig video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}


.dlg_big {
  height: 80vh;
}

.dlg_MiniMessage {
  height: fit-content !important;
  max-width: 32rem;
}


.hidden {
  display: none;
}

.img_InlineIcon {
  height: 1.2rem;
  margin-bottom: -0.3rem;
  /* height: 1.5rem;
  margin-bottom: -0.4rem; */
  margin-right: 0.5rem;
  width: unset !important;
}

.inp_Form {
  margin-bottom: 0.3rem;
  width: 100%;
  max-width: 30rem;
}

.menu-items {
  display: flex;
  flex-direction: row;
}

.menu-items a {
  color: var(--col-menu-text);
  padding: 0.67rem;
  text-decoration: none;
  transition: color 0.5s ease-in-out 0s;
}

.menu-items a:hover {
  color: var(--col-form-elements-hover);
}

.menu-item-highlight {
  color: var(--col-menu-highlight-text, var(--col-form-elements)) !important;
  background: var(--col-menu-highlight-bg, var(--col-menu-text));
  border-radius: 0.4rem;
  display: none;
}

.menu-item-highlight:hover {
  color: var(--col-form-elements-hover) !important;
}

.menu-toggle {
  display: none;
  background-color: var(--col-menu-bg);
  color: var(--col-menu-text);
  padding: 0px;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  text-align: right;
}


/* ─── Nav items (desktop topbar) ─── */

/* .mnu_Item {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  position: relative;
  transition: color .12s;
  user-select: none;
  white-space: nowrap;
}

.mnu_Item:hover {
  color: var(--font-color);
}

.mnu_Item.on {
  color: var(--font-color);
  font-weight: 500;
} */



/* .mnu_Item:hover{
  display: block;
} */


.nobr {
  white-space: nowrap;
}

.pad1 {
  padding: 1rem;
}



/* dlgQuellenAnzeige: full-height flex layout
   dialog (height:80vh from .dlg_big, display:block when open)
     └─ > div wrapper          height:100% (global rule) + flex column
          ├─ .div_Dialog_Text  flex:1, flex column, overflow:hidden (pre scrolls)
          │    └─ pre          flex:1, min-height:0, overflow-y:auto
          └─ .div_Dialog_Footer flex-shrink:0  (already set globally)
*/
.dlg_QuellenAnzeige > div {
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.dlg_QuellenAnzeige .div_Dialog_Text {
    display: flex;
    flex-direction: column;
    overflow: hidden;   /* pre handles its own scroll */
    margin-bottom: 0;
    padding-left: 2px;  /* prevent left border/shadow of pre from being clipped */
}

.pre_QuellenContent {
    /* background: #fafafa; */
    border: 1px solid #ccc;
    border-radius: 0.4rem;
    cursor: text;
    font-family: inherit;       
    line-height: 1.5;
    flex: 1;            /* fill available height in #dlgQuellenAnzeige */
    min-height: 0;      /* allow shrinking below content size (flex default is auto) */
    overflow-y: auto;
    padding: 0.75rem; 
    white-space: pre-wrap;
    word-break: break-word;
}
.pre_QuellenContent:focus {
    border-color: var(--col-form-elements-hover, #55DA63);
    background: #fff;
    box-shadow: 0 0 0 2px var(--col-form-elements-hover, #55DA63);
    outline: none;
}

.sp_QuellenFeedbackStatus {
    
    font-size: 0.85rem;

    /* margin-left: 1rem;
    vertical-align: middle; */
    
    position: absolute;
    left: 1rem;
    bottom: 1.6rem;
}



.safari_dialog > div {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  min-height: 0;
  overflow: auto;
}

.small {
  font-size: 0.8rem;
}

.spinner {
  border: 0.27rem solid #f3f3f3;
  border-top: 0.27rem solid var(--col-form-elements);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  animation: spin 0.7s linear infinite;
}

@keyframes blink {
  0%   { transform: translateY(0px); filter: brightness(1); }
  50%  { transform: translateY(0.27rem); filter: brightness(1.2); }
  100% { transform: translateY(0px); filter: brightness(1); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes pulsate {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3, 1.3);
    opacity: 0;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes liveDotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(40,200,64,.4); }
  50% { box-shadow: 0 0 0 0.33rem rgba(40,200,64,0); }
}

@starting-style {
  dialog[open]::backdrop {
    opacity: 0;
  }
}



/* More than HD */
@media (min-width: 1921px) {  
  :root {
    /* --font-size: 18px;
    --width-chatbot: 1056px; */
    --font-size: 1vw;
    --width-chatbot: 55vw;
  }

  input {
    height: 2.78rem;
  }
  
  .btn_Submit {
    height: 2.78rem;
  }

  .btn_SpeechInput {
    height: 2.78rem;
    width: 2.78rem;
  }

}

/* Smartphone and tablet with Claim */
@media (max-width: 1312px) {
  .div_AnswerHeader_Claim {
    /* max-width: 50%; */
  }
}
 
/* Tablet and smartphone */
@media (max-width: 1060px) {
  :root {
    --font-size: 14px;
    --width-chatbot: 100%;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }

  _dialog {
    font-size: 1rem;
    height: 100vh;
    margin: 1rem;
    min-width: unset !important;
    padding: 1rem;
    width: unset !important;

    /* width: calc(100% - 2rem);
    margin: 0 1rem;
    min-width: unset !important;
    max-width: calc(100vw - 2rem); */
  }

  input, select, textarea {
    font-size: 16px;
    padding: 0.3rem;
    max-width: 100%;
  }

  .btn_Close {
    top: -5px;
    right: -5px;
  }

  /* .btn_Merkzettel {
    display: none;
  } */


  

  .btn_Submit {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22none%22%20viewBox%3D%220%200%2032%2032%22%20class%3D%22icon-2xl%22%3E%3Cpath%20fill%3D%22white%22%20fill-rule%3D%22evenodd%22%20d%3D%22M15.192%208.906a1.143%201.143%200%200%201%201.616%200l5.143%205.143a1.143%201.143%200%200%201-1.616%201.616l-3.192-3.192v9.813a1.143%201.143%200%200%201-2.286%200v-9.813l-3.192%203.192a1.143%201.143%200%201%201-1.616-1.616z%22%20clip-rule%3D%22evenodd%22/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .div_AnswerHeader {
    grid-template-columns: 1fr;
    height: auto;
    margin-left: 0;
    width: 100%;
  }

  .div_AnswerHeader img {
    
  }

  .div_AnswerHeader_Claim {
    display: none;
    /* font-size: 1.3rem;
    padding: 24px 18px 20px; */
  }

  .div_AnswerText {
    max-width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 0;
  }

  .div_AnswerText h1 {
    font-size: 2rem;
    /* margin-top: 0; */
  }

  .div_BottomLine {
    position: relative;
    /* padding-bottom: 0; */

    /* mobile test */
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem; 
  }

  .div_Caution {
    /* font-size: 0.8rem; */
    padding-top: 0.1rem;
    position: absolute;
    top: -1rem;
  }

  .div_Chatbot {
    border-radius: 0;
    height: 100%;
    margin: 0;
    margin-top: 0.5rem;
    /* max-width: none; */
  }

  .div_Contact {
    margin: 1rem;
    width: unset;
  }

  .div_ConvoBar {
    gap: 0.3rem;
    padding: 0.4rem 1rem;
    flex-wrap: wrap;
  }

  .div_ConvoLink {
    font-size: 0.85rem;
  }

  .div_Example {
    margin-left: 0;
  }

  .div_Footer {
    /* padding: 0 1rem 6px;
    width: 100%; */

    padding: 1rem;
    padding-top: 0.5rem;
  }
  
  .div_Footer form, .div_Footer_inputs {
    gap: 0.27rem;
    padding: 0;
  }

  .div_Footer form button {
    /* keep your mobile square button shape */
    height: 2.8rem;
    width: 2.8rem;
    min-width: 2.8rem;
    /* width: 2.78rem;
    height: 2.78rem; */
    padding: 0;

    /* hide button text */
    font-size: 0;
    color: transparent;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
  }

  .div_Header {
    height: 52px;
    padding: 0 1rem;
  }

  .div_Header > a {
    margin-right: auto;
  }

  .div_Header img {
    height: 1.5rem;
    margin: 0;
  }

  .div_Header_Icons {
    position: absolute;
    right: 0.33rem;
    text-align: right;
  }

  .div_Header_Icons img {
    height: 1.33rem;
    margin-left: 0.1em !important;
    padding-left: 0;
  }

  .div_Header_Icons img:last-child {
    margin-right: 0.33rem;
  }

  .div_Header_Right {
    display: none;
  }

  .div_MainMenu div {
    width: 100%;
  }

  .div_MerkzettelContainer {
    padding: 0rem;
  }

  .div_MerkzettelContainer .div_Footer {
    margin: 0;
    max-width: unset;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .div_Merkzettel_Questions {
    padding-left: 0;
    padding-right: 0;
  }

  .div_Merkzettel_Text {
    overflow-x: hidden;
    padding-right: 0;
  }

  .div_PoweredBy {
    left: unset;
    right: 1rem;
  }

  .div_PoweredBy img {
    width: 3rem;
  }

  .div_SpeechBubble {
    max-width: 100%;
  }

  .div_TrustElement {
    display: none;
  }

  .dlg_MiniMessage > div {
    height: unset;
  }

  .menu-toggle {
    display: block;
    padding-right: 1rem;
  }

  .menu-items {
    display: none;
    flex-direction: column;
    background-color: var(--col-menu-bg);
    position: fixed;
    top: 3.5rem;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 0.27rem 0.53rem rgba(0, 0, 0, 0.1);
    z-index: 9;
  }

  .menu-items a {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
  }

  .menu-items.show {
    display: flex;
  }

  .menu-item-highlight {
    display: unset;
  }
}


/* Smartphone special */
/* @media (max-width: 374px) { */
@media (max-width: 400px) {

  dialog {
    font-size: 1rem;
    /* height: 100vh; */
    margin: auto;
    min-width: unset !important;
    padding: 1rem;
    width: unset !important;

    /* width: calc(100% - 2rem);
    margin: 0 1rem;
    min-width: unset !important;
    max-width: calc(100vw - 2rem); */
  }

  .div_Header_Icons img:last-child {
    margin-right: 0px;
  }

}


@media (max-width: 767px) {
  .div_CookiePanel_Content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .div_CookiePanel_Buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn_CookieAccept,
  .btn_CookieDecline {
    width: 100%;
  }
}