/*  ki-page leopard-ki - version leo.page 
    ak 2025      
    version 2.4 */



/* Settings */

:root {
  --col-dialog-bg: #eee;
  --col-form-elements: #1a1d3c;
  --col-form-elements-hover: #3a3d5c;
  --col-form-elements-label: white;
  --col-menu-bg: #eee;
  --col-menu-text: #333;
  --font-color: #191e3b;
  --font-color-dimmed: #aaa;
  --font-size: 18px;
  --width-chatbot: 980px;
}


/* Settings end. */


/* Common Elements */

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  /* height: -webkit-fill-available; for Chrome address bar on tablet */
  background-color: transparent;
  font-size: var(--font-size);
}

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

a {
  /* color: #4b8cff; */
  color: var(--col-form-elements);
}
a:visited {
  /* color: #4b8cff; */
  color: var(--col-form-elements);
}

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


/* for button styles see input (below) */

.btn_Submit {
  /* background-image: url('{{ url_for('static', filename='pfeil.svg') }}'); */
  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;
}


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

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

  @starting-style {
    opacity: 0;
    translate: 0 -5vh;
  }
}

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

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

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

dialog button {
  margin: auto;
  width: fit-content;
}

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(--col-form-elements);
  font-size: 2rem;
  font-weight: normal;
  line-height: 2rem;
}
h2 {
  color: var(--col-form-elements);
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 2rem;
  margin-top: 2rem;
  text-transform: uppercase;
}
h3 {
  color: var(--col-form-elements);
  font-size: 1.05rem;
  font-weight: bold;
  line-height: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h4 {
  color: var(--font-color);
  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(--font-color);
}

img {
  /* max-width: 100vw; */
  max-width: 100%;
}

input, select, textarea {
  color: var(--font-color);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  flex-grow: 1;
  padding: 0.7rem;
  border: 2px solid var(--font-color);
  border-radius: 0.4rem;
  margin-right: 0.7rem;
}
input:focus, textarea:focus {
  /* border-color: var(--col-form-elements); */
  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; */
  transition: filter 0.5s ease, transform 0.5s ease;
}
input:is([type="reset"], [type="button"], [type="submit"]):hover, button:hover {
  background-color: var(--col-form-elements-hover);
}
button:active {
  filter: brightness(1.2);
  transform: translateY(0.22rem);
}
button:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

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

video {
  width: 100%;
}



/* Scrollbar 
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
*/


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


/* Animations */

@keyframes blink {
  0%   { transform: translateY(0px); filter: brightness(1); }
  50%  { transform: translateY(4px); filter: brightness(1.2); }
  100% { transform: translateY(0px); filter: brightness(1); }
}
.blink {
  animation: blink 0.4s linear;
}

@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;
    }
}


/* Page Elements */

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

.btn_SpeechInput {
  /* width: 50px;
  height: 50px;
  min-width: unset;
  border-radius: 25px; */
  width: 2.78rem;
  height: 2.78rem;
  min-width: unset;
  border-radius: 1.39rem;
  margin: auto;
  /* background-color: rgb(118 118 118); */
  background-image: url('graph/icons/ic_mic.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  color: white;
  transition: all .2s;
  position: relative;
  /* animation: breathe 1.1s infinite ease-in-out; */
}

.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;
}


.cursorHand {
  cursor: pointer;
}


.div_AnswerHeader {
  position: relative;
  text-align: left;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  /* margin-bottom: 1rem; */
}
.div_AnswerHeader img, .div_AnswerText img {
  /* max-width: unset; */
  width: 100%;
}
.div_AnswerHeader_Claim {
  /* color: #ddd; */
  color: white;
  /* color: #1482bf; */
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
  max-width: 33%;
  position: absolute;
  left: 3rem;
  top: 24%;  
  /* text-shadow: 1px 1px 10px var(--col-form-elements); */
  text-shadow: 1px 1px 10px #2F4F4F;
  
}

.div_AnswerText {
  flex-grow: 1;
  margin: auto;
  padding: 1rem;
  padding-top: 0;
  width: var(--width-chatbot);
  /* width: 100%;
  max-width: var(--width-chatbot); */
}
.div_AnswerText h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 2.5rem;
  margin-top: 1rem;
}
.div_AnswerText li {
  margin-bottom: 1rem;
}


.div_BottomLine {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1rem;
  padding-left: 5px;
  padding-right: 5px;
  position: absolute;
  bottom: 5px;
  left: calc((100% - var(--width-chatbot))/2);
  width: var(--width-chatbot);
}

.div_BottomMenu {
  /*position: absolute;
  bottom: 0px;
  left: 2.3rem;*/
  font-size: 0.6rem;
}
.div_BottomMenu a {
  color: var(--font-color);
  text-decoration: none;
}

.div_Caution {
  font-size: 0.6rem;
  padding-top: 0.5rem;
  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; /* to avoid border-radius being overwritten by child elements */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  display: flex;
  flex-direction: column;
  height: calc(100vh - 1rem);
  height: -webkit-fill-available; /* for Chrome address bar on tablet */
  margin: 1rem auto;
  margin-bottom: 0;
  /* max-width: var(--width-chatbot); */
  position: relative;
  width: 100%;
}


.div_Contact {
  border: 1px solid var(--font-color);
  border-radius: 0.5rem;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  width: var(--width-chatbot);
}
.div_Contact a {
  text-decoration: none;
}

.div_ContactForm {
  /* background: var(--col-dialog-bg); */
  border: 1px solid var(--font-color);
  border-radius: 0.5rem;
  /* opacity: 0.95; */
  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%;
}


/* .div_Dialog {
  background-color: var(--col-dialog-bg);
  border-radius: 0.4rem;
  display: flex; 
  flex-direction: column; 
  font-size: 0.8rem;
  height: 100%;
  max-height: 80%;
  opacity: 0.95;
  padding: 1rem;
  width: var(--width-chatbot);
}
.div_Dialog h1 {
  font-size: 1.5rem !important;
  font-weight: normal;
  line-height: 1.5rem;
  margin-top: 0rem;
}
.div_Dialog h2 {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5rem;
  margin-top: 0rem;
} */

.div_Dialog_Footer {
  text-align: center;
}
.div_Dialog_Text{
  flex: 1;
  overflow-y: auto;
  margin-bottom: 1rem;
}
.div_Dialog_Text .div_AnswerHeader {
/* For conversation history */
  width: 100% !important;
  margin: 0 !important;
}
.div_Dialog_Text .div_AnswerText {
/* For conversation history */
  width: 100% !important;
  margin: 0 !important;
}


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


.div_Example {
  color: #4b8cff;
  /* color: var(--col-form-elements); */
  cursor: pointer;
  margin-bottom: 1rem;
  margin-left: 3rem;
  position: relative;
  padding-left: 1.5rem; 
  transition: all 0.5s ease-in-out 0s;
}
.div_Example:hover {
  color: #8080ff;
  /* color: var(--col-form-elements-hover); */
}

.div_Example::before {
  content: '•'; /* Unicode character for bullet point */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #4b8cff;
  /* color: var(--col-form-elements); */
}


.div_Footer {						  
  margin: auto;
  /* margin-top: 0.5rem;
  padding: 1.5rem;
  padding-bottom: 1.7rem; */
  max-width: calc(var(--width-chatbot) - 10%);
  padding-bottom: 0.5rem;
  padding-top: 1rem;
  position: relative;
  width: 65%;
  /* border-top: 1px solid #e0e0e0; */
}
.div_Footer form, .div_Footer_inputs {
  display: flex;
  width: 100%;
}


.div_Header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--font-color);
  margin: auto;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  width: var(--width-chatbot);
}
.div_Header img {
  /* height: 50px; */
  height: 2.78rem;
  margin-right: 1rem;
}

.div_Header_Icons img {
  /* height: 30px; */
  height: 1.67rem;
  margin-left: 1rem;
}
.div_Header_Icons img:last-child {
  margin-right: 10px;
}


.div_Inquiries {
  background-color: #FFFB7D;
  border-radius: 0.2em;
  /* font-weight: bold;  */
  /* margin-bottom: 5px; */
  margin-bottom: 2rem;
  padding: 0.2em 0.5em;
  width: fit-content;
}


.div_MainMenu {
 background-color: var(--col-menu-bg);
 /* padding: 0.3rem; */
 position: relative;
}
.div_MainMenu a {
  color: var(--font-color);
  margin-right: 1rem;
  text-decoration: none;
}
._div_MainMenu div {
  margin: auto;
  /* padding-left: 1rem;
  padding-right: 1rem; */
  padding-right: 10px !important;
  width: var(--width-chatbot);
}
.div_MainMenu div {
  margin: auto;
  padding-left: calc(1rem - 10px);
  padding-right: calc(1rem - 10px);
  width: var(--width-chatbot);
}

.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;
}

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

.menu-items a {
  color: var(--col-menu-text);
  padding: 10px;
  text-decoration: none;
}

.menu-item-highlight {
  color: var(--col-form-elements) !important;
  /* background: var(--col-menu-text); */
  background: #ccc;
}

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

.div_MessageText {
  padding-bottom: 2rem;
}

.div_OfferContainer {
  background: transparent;
  border-radius: 0.4rem;
  /* color: white; */
  display: flex;
  flex-direction: column;
  height: 90%;
  /* overflow: auto; */
  padding: 2rem;
  padding-right: 1rem;
  position: relative;
  /* width: 90%; 
  max-width: calc(var(--width-chatbot) - 5rem); */
}
.div_OfferContainer button {
  margin-bottom: 0.5rem;
}
.div_OfferContainer form {
  background-color: transparent;
  /* color: white; */
  /* background-color: rgba(255, 255, 255, 1); */
  border-radius: 0.4rem;
  /* color: var(--font-color); */
  padding: 1rem;
  text-align: center;  
}
.div_OfferContainer h1 {
  font-weight: bold;
  margin-top: 0;
  padding-right: 1rem;
}
.div_OfferContainer h2 {
  margin-top: 0;
}
.div_OfferContainer img {
  border-radius: 0.4rem;
  margin-bottom: 2rem
}
.div_OfferContainer input {
  /* border: 2px solid white;
  color: white;  */
}


.div_Offer_Answer {
  color: var(--col-form-elements);
  padding-left: 2rem;
}
.div_Offer_Answers {
  margin-top: 2rem;
}

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

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

.div_Offer_Questions {
  padding-left: 2rem;
  padding-right: 2rem;
}
/* .div_Offer_Questions button, .div_Offer_Answers button, #div_Offer_ChooseCategory button { 
  margin-bottom: 0.5rem;
  width: 100%;
}*/

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

.div_Offer_Text {
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 1rem;
}
.div_Offer_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_PoweredBy {
/*  position: absolute;
  bottom: -5px;
  left: 0;
  left: calc(50% - 41px);*/
  color: #81838d;
  font-size: 0.6rem;
  /* text-align: center;
  width: 100%; */
}
.div_PoweredBy a {
  text-decoration: none;
  color: var(--font-color);
  /* color: var(--col-form-elements); */
}
.div_PoweredBy a:hover {
  color: var(--col-form-elements-hover);
}
.div_PoweredBy img {
  width: 4.5rem;
  /* width: 82px */
}

.div_Question {
  color: var(--font-color-dimmed);
  cursor: pointer;
  font-size: 0.8rem;
  /* margin: auto; */
  padding: 0rem;
  /* padding-left: 1rem; */
  /* width: var(--width-chatbot); */
}


.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;
}
/* x .div_SpeechBubble > p img:first-of-type {
  border-radius: 0;
  width: 100%;
} */


.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;
}



.hidden {
  display: none;
}


.img_InlineIcon {
  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;
}


/* Bot Elements */

/* .message-user {
  background-color: var(--col-bubble-user);
  border-radius: 0.4rem;
  color: var(--col-bubble-user-text);
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 0;
  padding: 0.5rem;
}
.message-user ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 1rem;
}

.message-bot li {
  margin-bottom: 1rem;
}

._message-bot > p {
  margin-top: 2rem;
} */


.nobr {
  white-space: nowrap;
}

.small {
  font-size: 0.8rem;
}


/* "busy" spinner */

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

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



/* Responsiveness / 4K */

@media (min-width: 1921px) {  
    :root {
      /* --font-size: 36px; */
      --font-size: 1vw;
      --width-chatbot: 55vw;
    }

}


/* Responsiveness / Smaller than --width-chatbot */

/* @media (max-width: 979px) {  
  :root {
    --width-chatbot: 100%;
  }

  .div_TrustElement {
    top: 10%;
  }
} */


/* Responsiveness / Mobile */

@media (max-width: 1060px) {
/* @media (max-width: 767px), 
  (-webkit-min-device-pixel-ratio: 1.5), 
  (min-resolution: 144dpi), 
  (min-resolution: 1.5dppx) { */

  :root {
    --font-size: 14px;
    --width-chatbot: 100%;
  }

  body {
    /* height: 100%; */
  }

  input, select, textarea {
  /* prevent iphone auto zoom on input */
    font-size: 16px;
    padding: 0.3rem;
  }

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

  .btn_Submit {
    min-width: unset;
  }

  .div_AnswerHeader_Claim {
    display: none;
    font-size: 1rem;
    line-height: 1.5em;
    left: 1em;
    top: 1em;
  }

  .div_AnswerText {
    max-width: 100%;
  }
  .div_AnswerText h1 {
    font-size: 2rem;
    margin-top: 0;
  }

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

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

  .div_Dialog {
    width: calc(100% - 3rem);
  }

  .div_Example {
    margin-left: 0rem;
  }

  .div_Footer {
    box-sizing: content-box;
    /* padding: 1.5rem; */
    padding: 0rem;
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    width: 100%;
  }

  .div_Header {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .div_Header img {
    /* height: 65px; */
    margin: 0;
    padding: 0;
    padding-left: 1rem;
    max-width: 40%;
    max-height: 150px;
    height: unset;
  }
  
  .div_Header_Icons {
    position: absolute;
    /* top: 10px; */
    right: 10px;
    /* width: calc(100% - 180px); */
    text-align: right;
  }
  .div_Header_Icons img {
    height: 20px;
    margin-left: 0.5em !important;
  }

  .div_MainMenu div {
    /* margin: auto;
    padding-left: 1rem;
    padding-right: 1rem; */
    width: 100%;
  }

  .div_Menu {
    font-size: 0.8rem;
    left: 1rem;
  }

  .div_OfferContainer {
    padding: 0rem;
    /* width: 95%; */
  }  
  .div_OfferContainer .div_Footer {
    margin: 0;
    max-width: unset;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }   

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

  .div_Offer_Text {
    padding-right: 0;
  }

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

  .div_SpeechBubble {
    max-width: 100%;
  }

  .div_TrustElement {
    display: none;
    /* position: absolute !important;
    left: 0;
    top: -9%;
    width: 44%;
    max-height: 100%;
    overflow: clip; */
  }

  .menu-toggle {
    display: block;
  }

  .menu-items {
    display: none;
    flex-direction: column;
    background-color: var(--col-menu-bg);
    position: absolute;
    /* top: 40px; */
    left: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    
    display: none;

    /* display: flex;
    opacity: 0;
    transition: opacity 1s ease, max-height 0.5s ease; */

    z-index: 9;
  }

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

  .menu-items.show {
    display: flex;
    /* opacity: 1; */
  }
}