:root {
  --content-width: 1170px;
  --jhd-blue: #016dae;
  --jhd-green: #76b82a;
  --jhd-light-green: #76b82a23;
  --jhd-product-content-gray: #6e6e6e;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "calibri", "Open Sans", sans-serif;
  margin: 0;
}

h1 {
  color: var(--jhd-blue);
  font-size: min(6vw, 2em);
  /*text-transform: uppercase;*/
  margin-bottom: 0px;
  margin-top: 14px;
  line-height: 50px;
  /*border-top: 2px solid #016dae;*/
}

.components-wrapper .header + * {
  border-top: 2px solid #016dae;
  box-sizing: content-box;
  margin-left: calc((100% - var(--content-width)) / 2);
  margin-right: calc((100% - var(--content-width)) / 2);
  padding: 0;
}

h2 {
  color: var(--jhd-blue);
  font-size: 1.25em;
  /*text-transform: uppercase;*/
  margin: 25px 0;
}

h3 {
  color: #016dae;
  font-size: 0.97em;
  /*text-transform: uppercase;*/
  margin: 0;
  padding: 6px;
  float: none;
}

/*h4 {
  color: #ffffff;
  font-size: 0.95em;
  margin: 0;
  padding: 6px;
  float: none;
}*/

h4 {
  color: black;
  text-transform: none;
  margin: 20px 0 10px 0;
  font-weight: 0;
  font-size: 22pt;
  padding-top: 6px;
}
h4 + h4 {
  padding-top: 0;
}
h4:last-of-type {
  padding-bottom: 6px;
}

a {
   color: inherit;
   text-decoration: none;
}

.exp-bold b,
.exp-bold strong {
  line-height: 2em;
}

.lang-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
  min-height: 50px;
}
.lang-nav h1 {
  margin: 0;
  line-height: unset;
}
.lang {
  display: flex;
  flex-direction: row;
  gap: 10px;
  color: var(--jhd-blue);
  font-weight: 700;
  margin-left: auto;
  line-height: 1.7em;
}
.lang i {
  margin: 3px;
}
.lang a {
  display: flex;
}
.inline a {
  display: inline;
}
.inline a + a {
  margin-left: 5px;
}

.lang a img {
  width: 3ex;
  margin: 0 5px;
}
.lang.inline a img {
  width: 2ex;
  margin: 0 2px;
}
.inline {
  font-weight: inherit;
  font-size: inherit;
  display: inline;
  line-height: inherit;
}

p {
  margin: 0;
  padding: 3px 0px;
  line-height: 1.4;
}

.nav a, footer a, .header a, .headbar a, .product-categories a, a[href^='#']{
  text-decoration: none;
  color: inherit;
}
a.button-green {
  text-decoration: none;}

.mobileOptIn {
   display: none; }
.optMobileNot {
   display: none; }
section {
  /*background-color: #fefefe;*/
  overflow: hidden;
}

section.product-page-segment,
section.section-main-page{
  margin-top: 20px;
}

.section-main-page > h2 {
  background: linear-gradient(90deg, rgba(1,109,174,1) 0%, rgba(1,109,174,1) 66%, rgba(118,184,42,1) 84%, rgba(118,184,42,1) 100%); 
  /*background-color: #016dae;*/
  padding: 6px;
  color: white;
  margin: 0px;
}

.section-main-page li > a, .linkLike {
  color: #016dae;
  text-decoration: none;
}

/* 230324 */

form.cform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin: 0 auto;
}
section.product-page-segment:nth-child(even) > form.cform {
   background-color: white; 
   padding: 20px; 
   border-radius: 10px;}


.full-width {
  grid-column: 1/3;
}


.slot {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}

.slot > label, .slot > span {
  font-size: 0.8em;
  letter-spacing: 0.1px;
}

label.checkbox {
   width: 25px;
   height: 25px;
   background: #f1f4f6;
   flex: 0 0 25px;
   /*border-radius: 3px;
   border: 1px solid var(--jhd-blue);*/
   color: var(--jhd-blue);
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 1.6em;
   padding-top: 6px;
   margin-right: 4px;
}
input:checked + .checkbox::after {
   content: "✓";
}
.slot > input[type="checkbox"] {
   /*display: none;*/
   position: absolute;
   left: 0;
   z-index: -1;
   width: 0;
   height: 0;
}

#gfb {
  background-color: #76b82a24;
  border: 1px solid var(--jhd-green);
  color: var(--jhd-green);
  border-radius: 3px;
  padding: 8px 24px;
  display: block;
  margin: auto;
  cursor: pointer;
  font-weight: bold;
}

.slot > input[type="text"],
.slot > input[type="number"],
.slot > select, 
.slot > textarea{
  background-color: #f1f4f6;
  color: var(--jhd-blue);
  border: none;
  padding: 10px 0px 10px 3px;
  -moz-appearance: textfield;
}

.slot > textarea {
  resize: vertical;
}

.slot > input[type="text"]:focus,
input[type="number"]:focus,
input[type=checkbox]:focus + .checkbox,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgb(232, 232, 232);
  box-shadow: 0.5px 1px 3px rgb(232, 232, 232);
}

.in-row{
  flex-direction: row-reverse;
  align-items: flex-start;
}

.slot > input[type="submit"] {
  background-color: var(--jhd-blue);
  width: 240px;
  align-self: flex-end;
  border: none;
  border-radius: 3px;
  padding: 10px 0px 10px 3px;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  padding: 10px 0 10px 0;
  text-transform: uppercase;
  cursor: pointer;
}

.req{
  color: var(--jhd-blue);
}

/* ----- */

.mobile#gfb {
  display: none;
}
.mobile {
  display: none;
}

vfill {
  flex: 1 0 0;
  min-height: 30px;
}

.components-wrapper > footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: #898989;
  color: white;
  font-size: 0.7em;
  padding-top: 10px;
  padding-bottom: 20px;
}

footer h4 {
  color: #ffffff;
  font-size: 0.95em;
  margin: 0;
  padding: 6px;
  float: none;
  padding-top: 20px;
}

footer a {
  color: white;
}
.footer-img{
  width: auto;
  height: 12em;
}

ul {
  list-style-type: none;
  margin-top: 0px;
  margin-bottom: 0;
  padding-left: 6px;
}

/* input {
  display: none;
} */

label {
  text-decoration: none;
  transition-duration: 0.1s;
  color: inherit;
}

.checked-blue ul {
  color: #016dae;
}

.checked-blue > ul > li {
  padding: 5px 0px;
  margin: 0;
}

.checkmarks ul > li::before {
  content: "\f00c";
  font-weight: 900;
  color: inherit;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-family: "Font Awesome 5 Free";
  padding-top: 3px;
  padding-bottom: 7px;
}
.text-green {
  color: var(--jhd-green);
}

.checked-blue > ul > li::before {
  content: "\f00c";
  font-weight: 900;
  color: var(--jhd-blue);
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-family: "Font Awesome 5 Free";
}

.components-wrapper {
  margin-left: calc((100% - var(--content-width)) / 2);
  margin-right: calc((100% - var(--content-width)) / 2);
  /*  max-width: 100%; DJ hat das alles wieder eingebaut*/
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: auto;
}

.components-wrapper > * {
  padding: 0 calc((100vw - var(--content-width)) / 2);
}

.headbar {
  display: flex;
  position: relative;
  background-color: #666666;
}

.headbar a {
  color: white;
  padding: 3px 3px;
  font-size: 12px;
}

.headbar a > span {
  /*DJ added.*/
  margin-left: 1ch;
}

.headbar i {
  color: #77b82a;
}

.headbar a:hover {
  background-color: #77b82a;
  color: black;
}

.headbar a:hover i {
  color: #666666;
}

/* SEARCH */
.sresult {
   margin: 7px 27px;
   padding: 0 3px;
   max-width: 63%;
   display: block;
   border-left: 2px solid #016dae;
   color: inherit;
   text-decoration: none;
}
.sresult:hover {
   background-color: #dbedc7;
}
#txtHint > div {
   position: absolute;
   box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
   width: 100%;
   background-color: #6e6e6e;
   max-height: 500px;
   overflow-y: auto;
}
#txtHint {
   display: none;
}
#txtHint:hover, #searchfield:focus ~ #txtHint {
   display: block;
}
#txtHint a {
   display: block;
   padding: 10px;
   color: inherit;
   text-decoration: none;
}
#txtHint a:hover {
   background: #535353;
}
.searchwrap {
   position: relative;
   display: inline-block;
   margin: 10px auto auto auto;
   max-width: calc(100% - 20px);
   width: 400px;
}
/*#searchfield {
   line-height: 20px;
   background: url("/static/img/icons/search.svg") rgba(255,255,255,128);
   background-position: 2px 2px;
   background-size: 16px;
   background-repeat: no-repeat;
   border-radius: 2px;
   border: 1px lightgray solid;
   padding-left: 20px;
   width: 100%;
}*/

#searchfield {
  line-height: 30px;
  background: url("/static/img/icons/search.svg") rgb(255, 255, 255);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
  background-position: 6px center;
  background-size: 18px;
  background-repeat: no-repeat;
  border-radius: 5px;
  border: solid 1px #6e6e6e;
  padding-left: 30px;
  outline: #6e6e6e 3px solid;
  /*box-shadow: inset 0px 0 3px 1px #016dae;*/
  outline-offset: -1px;
  width: 100%;
}

/*DJ added*/
.header {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}

.header img {
  max-width: 300px;
  height: 90px;
}
.header .servicezeiten {
   flex-grow: 1;
   color: #014dae;
   font-size: .875em;
}
.header .servicezeiten > b {
   color: #76b82a;
}
.header .servicezeiten > div:first-of-type {
   padding-top: 3px;
}

/* ---- "SLIDER" ---- */

.slider {
  display: flex;
  gap: 10px;
  margin-right: auto;
}

@media all and (max-width: 628px) {
  .field.hov {
     display: none;
  }
}

.field {
  width: 190px;
  height: 168px; /*168*/
  text-align: center;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 2px 2px 2px #f5f5f5;
  border-radius: 3px;
  align-items: center;
  color: var(--jhd-green);
  font: "Open Sans", Sans-serif;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

.field.hov:hover {
  z-index: 5;
  transform: translateZ(1px);
  overflow: visible;
  top: 24px;
}

.field.hov:hover::before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAzIiBoZWlnaHQ9IjM4MyIgdmlld0JveD0iMCAwIDIwMyAzODMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGZpbHRlcj0idXJsKCNmaWx0ZXIwX2RfMTY0XzMwNCkiPgo8cmVjdCB4PSI0IiB3aWR0aD0iMTk1IiBoZWlnaHQ9IjM3NC4yNzQiIHJ4PSIxOSIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzE2NF8zMDQpIi8+CjwvZz4KPHJlY3QgeD0iODAuNTMyMiIgeT0iMjAuOTY3OCIgd2lkdGg9IjQxLjkzNTUiIGhlaWdodD0iNC4xOTM1NSIgcng9IjIiIGZpbGw9IndoaXRlIi8+CjxjaXJjbGUgY3g9IjEwIiBjeT0iMTAiIHI9IjEwIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSAxMTEgMzM3KSIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iMTYiIHk9IjQ2IiB3aWR0aD0iMTcwIiBoZWlnaHQ9IjI4NSIgZmlsbD0id2hpdGUiLz4KPGRlZnM+CjxmaWx0ZXIgaWQ9ImZpbHRlcjBfZF8xNjRfMzA0IiB4PSIwIiB5PSIwIiB3aWR0aD0iMjAzIiBoZWlnaHQ9IjM4Mi4yNzQiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJzUkdCIj4KPGZlRmxvb2QgZmxvb2Qtb3BhY2l0eT0iMCIgcmVzdWx0PSJCYWNrZ3JvdW5kSW1hZ2VGaXgiLz4KPGZlQ29sb3JNYXRyaXggaW49IlNvdXJjZUFscGhhIiB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMTI3IDAiIHJlc3VsdD0iaGFyZEFscGhhIi8+CjxmZU9mZnNldCBkeT0iNCIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIyIi8+CjxmZUNvbXBvc2l0ZSBpbjI9ImhhcmRBbHBoYSIgb3BlcmF0b3I9Im91dCIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMC4yNSAwIi8+CjxmZUJsZW5kIG1vZGU9Im5vcm1hbCIgaW4yPSJCYWNrZ3JvdW5kSW1hZ2VGaXgiIHJlc3VsdD0iZWZmZWN0MV9kcm9wU2hhZG93XzE2NF8zMDQiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3dfMTY0XzMwNCIgcmVzdWx0PSJzaGFwZSIvPgo8L2ZpbHRlcj4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzE2NF8zMDQiIHgxPSI0MyIgeTE9IjciIHgyPSIxNjYiIHkyPSIzNzQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwNkRBRSIvPgo8c3RvcCBvZmZzZXQ9IjAuNTAyNTIzIiBzdG9wLWNvbG9yPSIjODNBRTlCIi8+CjxzdG9wIG9mZnNldD0iMC45ODA1NjUiIHN0b3AtY29sb3I9IiM5MEIxNkEiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  width: 203px;
  height: 383px;
  left: -6px;
  top: -46px;
  position: absolute;
  z-index: 4;
  transform: translateZ(-1px);
  /*pointer-events: none;*/
}

.field.hov:hover > .fieldcontent {
   flex: 1 0 275px;
}

.field b {
  display: block;
  margin-bottom: 1em;
  color: var(--jhd-blue);
  font-size: 18px;
}

.fieldcontent {
  width: 170px;
  height: 168px;
  z-index: 6;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  flex-direction: column;
  /*flex: 0 0 285px;*/
}

.teaser {
  justify-content: center;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  width: 166px;
  height: 146px;
  background: linear-gradient(270deg, #6eb41e33 0%, #0e7db433 55%, #016dae33 100%);
  border-radius: 1px;
  margin: auto;
  min-width: 166px;
}

.fieldcontent img, .fieldcontent .teaser {
  width: 160px;
  height: 160px;
  /*background: #bab;*/
  flex: 0 0 160px;
}

.field.hov:hover img, .field.hov:hover .teaser {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  transition-duration: 0s;
}

.fextra {
   margin: auto 0;
   display: flex;
   flex-direction: column;
   justify-content: space-evenly;
   flex-grow: 1;
}

.fhead {
  color: var(--jhd-blue);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 18px;
  font-size: 14px;
}

.ftext {
   color: #3d3d3d;
   font-weight: 400;
}

.fbutton {
  background-color: #76b82a24;
  border: 1px solid var(--jhd-green);
  color: var(--jhd-green);
  border-radius: 3px;
  padding: 2px 10px;
  display: block;
  cursor: pointer;
  font-weight: bold;
  margin: 0 auto;
  max-width: 146px;
  transition-duration: .5s;
}

.fbutton:hover {
  border-color: #76b82a00;
}
/* ---- END SLIDER ---- */

.about-product {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  background-color: #898989;
  position: relative;
  max-width: 100%;
  padding: 0 calc((100% - var(--content-width)) / 2);
}

.hero {
  display: flex;
  flex-direction: column;
}

.banner {
  height: auto;
  background-repeat: no-repeat;
  width: 100%;
}

.upper-line {
  border-top: 2px solid #016dae;
  padding-top: 20px;
}

.banner > img {
  width: 100%;
}

.vcard {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.vcard * {
  padding-top: 14px;
}

.vcard .name {
  font-weight: bold;
}

.vcard > .name + .name,
.vcard .phone,
.vcard:first-child {
  padding-top: 0;
}

.vcard-info {
  padding-top: 0;
  margin-bottom: 14px;
}

/* .vcard-info{
  display:flex;
  flex-direction: column;
  width: 100px;
} */

.product-categories {
  color: #016dae;
  font-size: 18px;
  display: flex;
  /* flex-direction: row-reverse; */
  margin-top: 3px;
  height: 180px;
}

.product-categories > ul {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  flex-wrap: wrap;
  column-fill: auto;
  max-height: 100%;
}

.product-categories-photo {
  float: left;
  flex-basis: 262px;
}

.product-content {
  display: flex;
  align-items: center;
  background: #6e6e6e;
  color: white;
  padding: 10px;
  flex: 1 0 min(370px, 90vw);
  /*padding: 0; */
}

/* .product-content:nth-Child(2) {
   background-repeat: no-repeat;
   background-size: cover;
   background-position: right;
   flex-shrink: 2; 
} */

/* Added because for page Schaden melden. Remove comment after design is approved */

.product-content section {
  margin: 5px 5px 5px 30px;
}

.product-content p {
  font-size: 1.3em;
  padding: 0;
}

.product-alinks {
  background-color: #6e6e6e;
  margin: 5px;
  padding: 0;
  font-size: 1.2em;
  columns: 360px 2;
  width: 100%;
}

.product-alinks li {
  padding: 7px 5px;
  margin-left: 30px;
}

.product-alinks a {
  color: white;
}

.product-photo {
  min-height: 312px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 60% bottom 45%;
  flex: 1 2 min(370px, 90vw);
  background-color: var(--jhd-product-content-gray);
}

.product-page-segment {
  font-size: 1.3em;
  position: relative;
  margin: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

section.product-page-segment:nth-child(even) {
  background: #f0f0f0;
}

section.product-page-segment:nth-child(odd) {
  background: #ffffff;
}

section.product-page-segment:nth-child(even) + .docs {
  /*abstand zwischen grau und blau (nicht bei ungerader anzahl von .seite-Elementen*/
  margin-top: 30px;
}

.product-page-segment h2 {
  color: black;
  text-transform: none;
  margin: 20px 0 10px 0;
  font-weight: 0;
  font-size: min(27pt, 7vw);
}

.product-page-segment-docs {
  background: #bfd9eb;
  color: #016dae;
  margin-top: 30px;
}
.product-page-segment-docs h2 {
  /* margin-top: -25px; */
  color: var(--jhd-blue);
  padding-top: 10px;
  position: relative;
  font-size: min(27pt, 7vw);
  text-transform: unset;
  margin: 20px 0 10px 0;
  flex-basis: 100%;
}
.product-page-segment-docs h3 {
  font-size: 1em;
  padding: 0 10px;
}
.product-page-segment-docs h4 {
  margin: 0;
  color: var(--jhd-blue);
  font-size: 1.35em;
}

.product-page-segment-docs a {
  color: #016dae;
  font-size: 1.35em;
  transition-duration: 0.2s;
}
.product-page-segment-docs a:hover {
  color: white;
}

.segment-overview-docs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-grow: 1;
  padding-bottom: 30px;
  gap: 10px;
}

/* 230324 */

.service-hours .segment-overview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 1px 1px 5px #636363;
  width: 50%;
  padding: 20px;
  color: #7e7e7e;
  border-radius: 5px;
  margin: 0 auto 10px auto;
}
.service-hours .segment-overview > p:nth-child(1) {
  color: var(--jhd-blue);
  font-size: 1.1em;
  padding-bottom: 10px;
}

/* ----- */

.doc-column {
  flex: 1 0 275px;
  padding-bottom: 10px;
}

@media all and (max-width: 1350px) {
  .doc-column {
     flex: 1 0 400px;
  }
}

.segment-overview {
  color: inherit;
}
.segment-overview ul,
.response ul {
  padding-left: 1em;
}
.segment-overview li::before,
.response li::before {
  content: "·";
  font-weight: 900;
  width: 1em;
  display: inline-block;
  margin-left: -1em;
}

.bulletin-list li::before {
  content: "·";
  font-weight: 90;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-family: "font awesome 5 free";
}

.button {
  display: block;
  max-height: 82px;
}

.button-green {
  background-color: #77b82a;
  color: #ffffff;
}

.button-green::before {
  content: "\f0a9";
  font-weight: 900;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-family: "font awesome 5 free";
  padding-right: 5px;
}

.buttons-overview {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap; /* DOCH! */
  gap: 35px;
  margin-top: 15px;
}
.buttons-overview a {
  text-align: center;
  margin: 10px 10px 10px 0;
  padding: 10px 20px 10px 40px;
  font-size: 18px;
  border-radius: 10px;
  position: relative;
}
.buttons-overview > a {
  flex: 1 1 30%;
}
.button-headline {
  flex-basis: 100%;
  font-weight: bold;
  font-size: 18px;
}

.buttonhead {
  color: #000;
  text-transform: inherit;
}

.ov-button-cont {
  flex: 1 0 350px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.ov-button-cont > * {
  flex: 0 0 0;
}

.button-sub {
  margin-top: -30px;
}

input.faq {
  display: none;
}
.response {
  display: none;
}

input.faq:checked + .response {
  display: block;
}

.button-solid {
  height: 100%;
  padding: 12px 20px;
  max-width: 20em;
  border-radius: 10px;
  background-color: var(--jhd-green);
  box-shadow: 4px 4px 7px 0px rgb(30, 30, 30);
}
.button-light {
   background-color: #76b82a24;
   border: 1px solid var(--jhd-green);
   color: var(--jhd-green);
   border-radius: 3px;
   display: block;
   cursor: pointer;
   font-weight: bold;
}
.query {
  /*background-color: #77b82a;
  color: #ffffff;
  cursor: pointer;
  border-radius: 10px;*/
  padding: 10px 1em 10px 2em;
  margin: 4px 0;
}
.query::before {
  content: "\f059";
  font-weight: 900;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-family: "font awesome 5 free";
}

.response {
  padding: 10px 1em 10px 2em;
  margin-bottom: 20px;
}

.response::before {
  /*  content: "\f05a";  */
  font-weight: 900;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-family: "font awesome 5 free";
}
/*.response ul {
   list-style-type: unset;
   padding: unset;
}*/

.not.query {
  margin-left: 1em;
  background-color: unset;
  color: #016dae;
  font-weight: bold;
}
.not.query::before {
  content: "\f055";
}
.not.response {
  margin-left: 1em;
}
.not.response::before {
  content: "\f054";
  font-size: 0.7em;
}
.not.response p {
  display: inline;
}

/* ul .response {
  padding: 0px 1em 0px 2em;
  margin: -1em 0 0 0;
}

.response ol li::before {
  margin-left: 0;
}

.response h5 {
  font-size: 1.1em;
  margin: 0.8em 0 0.8em 0;
}

.response a {
  text-decoration: underline;
} */

.divider {
  flex-grow: 1;
}

.footer-link-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 10px 0;
  position: relative;
  flex-grow: 0;
}

a[href^="http"]:hover::after {
  content: "Sie verlassen unsere Seite über diesen Link";
  position: absolute;
  background: black;
  color: white;
  padding: 5px;
  display: inline-block;
  width: max-content;
  border-radius: 10px;
  z-index: 1060;
  top: 120%;
  line-height: 1.25em;
  transform: translateZ(20px);
}
.newsentry a[href^="http"]:hover::after {
  right: 0;
  top: 0;
}

/*_________________________________________ Side navigation_______________________________________________ */

.navbar_topfill {
  position: fixed;
  margin-left: -120px;
  height: 100%;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 120px;
  background: #76b82a;
  z-index: 1000;
  transition-duration: 0.4s;
}
/*.nav:hover, .nav:active, .nav.active, */
#show_navbar:checked ~ .nav {
  width: 120px;
  height: 604px;
  border-radius: 0 10px 10px 0;
  background: #76b82a no-repeat url("/static/img/menu.svg"); /*image: menu*/
  background-position: 50px 12px;
  background-size: 20px 25px;
}
.nav-a > img, .nav-a > svg {
  margin-top: 10px;
  max-height: 1em;
  /*border: 1px solid white;
  border-radius: 4px;*/
}
.nav-a.lang {
  display: none;
}
.nav > div:hover .nav-b.lang {
  margin-left: 0;
}
.nav-b.lang > span ~ span:before {
  /*content:" / ";*/
}
.nav .lang a {
  background-size: 25px;
  background-repeat: no-repeat;
  overflow: show;
  width: 25px;
  height: 20px;
  display: inline-block;
  border-radius: 5px;
  background-position: center;
  /*! float: left; */
}
.nav .lang a[href$="en"] {
  background-image: url(/static/img/flaggb.png);
}
.nav .lang a[href$="de"] {
  background-image: url(/static/img/flagde.png);
}

@font-face {
  font-family: "emoji";
  src: url("/fonts/EmojiOneColor.otf") format("woff2");
}
.nav {
  /*background:#76b82a99 no-repeat url("../img/menu.svg"); proposal*/
  background: #76b82a no-repeat url("/static/img/menu.svg"); /*image: menu*/
  background-position: 8px 12px;
  background-size: 20px 25px;
  color: #fff;
  width: 40px;
  height: 50px;
  position: relative;
  position: sticky;
  margin-top: 120px; /*-35px*/
  top: 0;
  margin-left: 0px; /*-13px;*/
  z-index: 1000;
  -webkit-transform: translateZ(1px);
  -moz-transform: translateZ(1px);
  -ms-transform: translateZ(1px);
  -o-transform: translateZ(1px);
  transform: translateZ(1px);
  transition-duration: 0.2s;
  float: left;
  border-radius: 0 10px 10px 0;
  margin-right: -120px;
  overflow: hidden;
}
.nav * {
  /*-webkit-transform:translateZ(1px);
   -moz-transform:translateZ(1px);
   -ms-transform:translateZ(1px);
   -o-transform:translateZ(1px);
   transform:translateZ(1px);*/
}
.link-container {
  height: 504px;
  position: relative;
}
.nav .feedback-container {
  position: relative;
  background: rgb(118, 184, 42) !important;
  width: 100%;
  border-radius: 0 0 10px 0;
  transition: 0.2s;
  top: 454px !important;
  left: -120px;
}
.nav:hover .feedback-container,
.nav:active .feedback-container,
.nav.active .feedback-container {
  width: 100%;
  display: block !important;
}
.nav > div {
  display: none;
  top: 50px;
}
/*.nav:hover > div, .nav:active > div, .nav.active > div, */
#show_navbar:checked ~ .nav > div {
  display: block;
}
.nav div {
  background: rgb(118, 184, 42);
  width: 100%;
  height: 50px;
  position: relative;
}
.nav > .link-container > div:first-child {
  border-top: 2px #fff solid;
  margin-top: -2px;
  z-index: 1020;
}
.nav > div > div:last-child {
  /*border-bottom: 2px #fff solid;*/
}
.nav > div div {
  margin-left: 0px;
  position: relative;
  transition-duration: 0.2s;
  text-align: center;
  vertical-align: middle;
  line-height: 50px;
  color: #fff;
}
.nav-b div {
  z-index: 1001;
  font-size: 0.8em;
  overflow: hidden;
  /*padding-left: 120px;
   /*left: -120px;*/
}
.nav-a,
.nav-search {
  z-index: 1002;
  font: normal normal 900 1.7em/50px "Font Awesome 5 Free";
}
.nav > div > div div {
  margin-left: 0px;
  position: absolute;
  top: 0px;
  transition-duration: 0.2s;
}
.nav > div:hover .nav-b {
  margin-left: 120px;
}
.nav > div .nav-c {
  margin-left: -120px;
}
.nav > div > div:hover .nav-c {
  margin-left: 0px;
}
.nav > div > div:hover div {
  background: #fff;
  color: rgb(118, 184, 42);
}
div > a[href*="xfacebook"]:hover div {
  /*text+bild blau*/
  color: #3b5998;
}
div > a[href*="xfacebook"] div.nav-a {
  /*bild blau*/
  color: #2e7cb4;
}
.feedback {
  width: 100px;
  height: 30px;
  border-radius: 10px;
  background: #fff;
  color: rgb(118, 184, 42);
  border: none;
  font-size: 12px;
  text-align: center;
  line-height: 30px;
  display: block;
  position: relative;
  top: 10px;
  text-decoration: none;
  margin: auto;
}
.feedback:hover {
  width: 96px;
  height: 26px;
  line-height: 26px;
  background: rgb(118, 184, 42);
  color: #fff;
  border: #fff 2px solid;
  border-radius: 11px;
}
/* .search-container {
} */
.nav label[for="search"]:hover {
  color: #76b82a;
  background: white;
}
.nav input[type="search"]:focus + label[for="search"]:hover {
  background: #76b82a;
  color: white;
}
.nav label[for="search"] {
  transition-duration: 0.4s;
  display: block;
  width: 100%;
  order: 1;
  flex-shrink: 0;
}
.nav input[type="search"]:focus + label[for="search"] {
  width: 20px;
  font-size: 14pt;
}
.nav input[type="search"] {
  transition-duration: 0.4s;
  background: #76b82a;
  color: white;
  border: none;
  outline: none;
  width: 0px;
  order: 2;
  flex-shrink: 1;
  font-size: 12pt;
  margin: auto;
}
.nav input:focus[type="search"] {
  width: 100px;
}
.nav-search {
  display: flex;
  overflow: hidden;
  border-top: none;
}
.nav div.search-suggest {
  position: absolute;
  display: none; /* WIP, block */
  float: right;
  left: 120px;
  top: 0;
  height: auto;
  width: auto;
  padding: 0 10px;
}
.search-suggest li::before {
  content: "> ";
}
.search-suggest > ul {
  display: block;
  white-space: nowrap;
  line-height: initial;
  text-align: left;
  list-style-type: none;
  padding: 0;
}
.nav-search-b {
  float: right;
}
.nav:hover .feedback-container,
.nav:active .feedback-container,
.nav.active .feedback-container {
  left: 0px;
}
.link-container > div:first-child .nav-b {
  border-radius: 0 10px 0 0;
}
.link-container > div .nav-b > div {
  border-radius: inherit;
}
.link-container > div:nth-last-child(1) .nav-b {
  border-radius: 0 0 10px 0;
}
.link-container > div .nav-b > div {
  border-radius: inherit;
}
.hidden {
  display: none;
}
.nav > label[for="show_navbar"] {
  display: block;
  width: 100%;
  height: 50px;
  position: absolute;
}

.nmodal {
  position: absolute;
  top: 0;
  left: 0;
  background: #000c;
  width: 100vw;
  height: 100vh;
  z-index: 1007;
  margin: auto;
  display: flex;
}
.messages {
  width: 70%;
  max-height: 70%;
  margin: auto;
  border-radius: 10px;
  background-color: white;
  position: relative;
}
.message {
  padding: 10px 30px;
}
.message::after {
  content: "";
  margin: auto;
  height: 1px;
  width: 90%;
  background-color: rgb(118, 184, 42);
  display: block;
  padding: 0;
}
.message:last-of-type::after {
  content: none;
}
.close_messages {
  color: rgb(118, 184, 42);
  width: 30px;
  height: 30px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.close_messages * {
  margin: auto;
  display: block;
}
.nmodal a {
  color: #016dae;
}
.nmodal ul {
  list-style: disclosure-closed inside none;
}

@media all and (min-width: 768px) {
  .nav {
    text-align: left;
    -webkit-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
    -webkit-order: 1;
    order: 1;
  }
  .product-categories img {display: unset;}
}

@media all and (min-width: 1000px) {
  .nav > label[for="show_navbar"] {
    display: none;
  }
  .nav .feedback-container {
    border-radius: 0;
    top: 404px !important;
  }
  .nav {
    width: 120px;
    height: 604px;
    background: #76b82a; /*image: menu*/
    top: 120px; /*20px*/
    margin-left: 0px; /*-18px ? */
    z-index: 1000; /*change for a link for mobile devices (a:active)*/
    border-radius: 0;
    margin-top: -5px;
    /*margin-right: 0px;*/
  }
  .nav:hover {
    /*height: 604px;*/
    overflow: visible;
  }
  .nav > div {
    display: block;
    top: 0px; /*20px*/
  }
  .navbar_topfill {
    margin-left: 0px;
  }
  .nav .feedback-container {
    left: 0px;
  }
  /*  .nav-a.lang {
    display: block;
  } */
  /*  .nav > div:hover .nav-b.lang {
    margin-left: 120px;
  } */
}

/*_________________________________________ Team _______________________________________________ */

.team-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  text-align: left;
  position: relative;
  flex-grow: 1;
}
.head.onecol {
  width: calc(100% - 48px);
  left: 20px;
}
.prod.onecol {
  padding: 0;
}
.team {
  text-align: left;
  position: relative;
  color: #0067b1;
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  justify-content: center;
  gap: 32px;
}
.team.right {
  justify-content: center;
}
.team.right div {
  max-width: 300px;
  margin: auto;
}
.team.right div a {
  font-weight: bold;
}
.partner {
  width: 98%;
  margin: 16px auto;
  min-height: 170px;
  position: relative;
  line-height: 40px;
  /*border: 1px solid;*/
}
.profile {
  width: 98%;
  margin: 16px auto;
  min-height: 170px;
  position: relative;
  line-height: 40px;
  /*border: 1px solid;*/
}
.teamimg {
  position: relative;
  right: 0px;
  top: 0px;
  margin: auto 0px auto 5px;
  /*overflow: hidden;*/
  height: 130px;
  width: 175px;
  flex: 0 0 175px;
}
.partner img {
  float: right;
  width: 175px;
  height: auto;
}
.profile img {
  float: right;
  width: 100%;
  height: auto;
}
.teamimg img {
  position: relative;
  opacity: 1;
  transition-duration: 0.3s;
  width: 175px;
  left: 0px;
  bottom: 0px;
}
img.tnrmimg {
  position: absolute;
  z-index: 7;
  transform: rotate(0deg);
}
.teamimg:hover img.tnrmimg {
  opacity: 0;
  transform: rotate(-7deg);
  left: -16px;
  bottom: -10px;
}
img.taltimg {
  position: absolute;
  z-index: 5;
  transform: rotate(7deg);
  left: 16px;
  bottom: 10px;
}
.teamimg:hover img.taltimg {
  opacity: 1;
  transform: rotate(0deg);
  left: 0px;
  bottom: 0px;
}
.profile-name {
  font-weight: bold;
}
.profile-info {
}
.profile {
  max-width: 500px;
}
.team {
  flex: 1 1 300px;
}
.team + .team {
  flex-shrink: 5;
  margin-left: 32px;
}
.team.left {
  margin: 0px 8px 0px 8px;
}
.team.right {
  margin: 0px 8px 0px 8px;
}

@media all and (max-width: 500px) {
  .profile {
    display: flex;
    flex-direction: column;
  }
  .teamimg {
    order: 2;
  }
  .profile-name {
    order: 1;
    font-size: 1.2em;
  }
  .profile-info {
    order: 3;
  }
  .profile-info::first-line {
    font-weight: bold;
    text-indent: 3mm;
  }
}

.chat-container {
  /*width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;*/
  position: fixed;
  bottom: 70px;
  right: 70px;
  z-index: 2000;
}
#chat-toggle {
  -webkit-appearance: none;
  display: none;
}
.chat-button {
  position: absolute;
  z-index: 999;
  width: 60px;
  height: 60px;
  /*background: var(--jhd-green);*/
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.chat-button > i {
  font-size: 2em;
  color: #fff;
}

.chat-button > i:hover {
  filter: drop-shadow(1px 1px 1px #fff);
}
.chat-button img {
  width: 70%;
}

/* .chat-button::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  transform: rotate(90deg);
  transition: all 0.4s ease;
}
.chat-button::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 0.4s ease;
} */

.chat-nav {
  opacity: 0;
  transition: all 0.4s ease-in-out;
  /*background: #fff;
  width: 100%;
  border-radius: 5px;*/
  transform: translateY(45%) translateX(45%) scale(0);
  box-shadow: 2px 3px 10px 0 rgba(81, 81, 81, 0.1);
  /*border: 3px solid var(--jhd-green);
  padding: 10px;*/
  /*z-index: 1000;
  height: 0;
  overflow: hidden;*/
  /*height: 0;*/
  position: relative;
  z-index: 2022;
  display: flex;
  flex-direction: column;
  bottom: 10px;
  right: 10px;
  margin-left: 20px;
}
.chat-nav > ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.chat-nav > a {
  text-align: center;
  margin: 20px 0;
  color: var(--jhd-blue);
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}
.chat-nav > a:hover {
  color: var(--jhd-green);
}
.chat-button {
  transition: height 0s 0s, opacity 0.4s ease-in-out;
  opacity: 1;
}

#chat-toggle:checked ~ .chat-nav .chat {
  transition: height 0s 0s;
  z-index: 2023;}
#chat-toggle:checked ~ .chat-nav {
  opacity: 1;
  transform: translateY(0%);
}
#chat-toggle:checked ~ .chat-button {
  transition: height 1s 1s, opacity 0.4s ease-in-out;
  height: 0;
  opacity: 0;
}
#chat-toggle:checked ~ .chat-button:before {
  transform: rotate(225deg);
}
#chat-toggle:checked ~ .chat-button:after {
  transform: rotate(135deg);
}

 /* Chat ACTIVE UND CHAT und Chat INACTIVE-INFO  sind zu dem momentaen CSS zugefügt */
 
/* Chat ACTIVE */

.chat {
  transition: height 0s 0.5s;
  display: flex;
  flex-direction: column;
  position: relative;
  right: 0px;
  bottom: 0px;
  width: 300px;
  height: 0px;
  border-radius: 10px;
  background-color: #f7f7f7;
  box-shadow: 1px 1px 3px gray, -5px 5px 9px gray;
  z-index: 0;
  overflow: hidden;
  flex: 1 1 450px;
}
.chat.chat-info {
   flex-basis: content;
   max-height: 450px;
}

.chat-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: var(--jhd-green);
  width: 100%;
  /*height: 7vh;
  line-height: 2;*/
  padding: 5px 0;
}

.chat-title {
  padding-left: 10px;
  color: white;
  font-size: 1em;
}

.close-chat {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 4ex;
  line-height: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
  cursor: pointer;
}

.chat-body {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-bottom: 30px;
}

.chat-message-component {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px;
  white-space: pre-wrap;
  word-break: break-word;
}

.c-user {
  flex-direction: row-reverse;
}
.c-info {
  flex-direction: column;
  align-items: center;
}
.c-info .c-message {
  text-align: center;
}

.c-agent {
  color: #666666;
} 

.c-agent a { 
 color: #016dae; 
}

.chat-message-component img {
  height: 25px;
  margin: 0 8px;
  flex: 0 0 25px;
}

.message-agent {
  margin-left: 10px;
  padding: 7px;
  background-color: white;
  border-radius: 10px;
  font-size: 0.8em;
  line-height: 1.7;
  border-end-start-radius: 0;
}

.message-user {
  margin-right: 10px;
  padding: 7px;
  background-color: var(--jhd-green);
  border-radius: 10px;
  color: white;
  font-size: 0.8em;
  line-height: 1.7;
  border-end-end-radius: 0;
}

.id-date-time {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3px;
  padding-top: 5px;
  color: #898989;
  font-size: 0.8em;
  font-weight: lighter;
  width: 100%;
  align-items: center;
}
/* DJ: decorative elements at time/sender info */
.id-date-time::before,
.id-date-time::after {
  width: 30px;
  height: 1px;
  background-color: #898989;
  border-radius: 3px;
  content: "";
  margin: auto 3px;
  display: block;
  bottom: 1px;
  position: relative;
}
.id-date-time span + span::before {
  width: 2px;
  height: 2px;
  background-color: #898989;
  /*border: 0px solid #898989;*/
  border-radius: 3px;
  content: "";
  margin: auto 5px auto 3px;
  display: block;
  bottom: 1px;
  position: relative;
}
.id-date-time span {
  display: flex;
} /*deco end*/

.chat-message-input {
  background-color: white;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 50px;
  line-height: 2;
  border-top: solid 1px lightgray;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  padding: 0 10px;
  align-items: center;
}

input:focus {
  outline: none;
  border-color: var(--jhd-blue);
  /*box-shadow: 1px 1px 3px #dce5ed, -1px 5px 9px #dce5ed;*/
}

.input-text {
  /*position: absolute;
  bottom: 5px;
  width: 80%;*/
  height: 35px;
  line-height: 2;
  border: none;
  background-color: transparent;
  padding: 7px;
  font-weight: lighter;
  /*margin-left: 10px;*/
  flex-grow: 1;
}

.btn-send {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666666;
  background: transparent;
}

.btn-send:hover {
  color: #999999;
}
/*.waiting {
  pointer-events: none;
}*/

.waiting:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-style: solid;
  display: block;
  border-radius: 50%;
  border-width: 3px 3px 0 0;
  border-color: #016dae transparent transparent transparent;
  filter: blur(1px);
  animation: rotate 2s infinite linear;
  background: white;
  outline: 5px white solid;
}

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

/* Chat INACTIVE-INFO */

/*.chat-info {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 300px;
  height: auto;
  border-radius: 10px;
  background-color: #f7f7f7;
  box-shadow: 1px 1px 3px gray, -5px 5px 9px gray;
}*/

.chat-info-header,
.chat-info > .chat-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: var(--jhd-blue);
  width: 100%;
  height: 80px;
  line-height: 2;
  padding: 5px 0;
}

.text-blue {
  color: var(--jhd-blue);
  font-weight: 700;
}

.message-info {
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
}

.message-info > *{
  margin: 0 auto;
}

/*_________________________________________ Media _______________________________________________ */

@media (max-width: 640px) {
  .chat-container {
     right: 0;
  }
  .chat {
     width: min(300px, 100%);
  }
}

@media only screen and (max-width: 1480px) {
  .components-wrapper > * {
    padding-left: 152px;
    padding-right: 37px;
  }

  .components-wrapper {
    padding: 0;
  }

  .components-wrapper .header + * {
    padding-left: 152px;
    padding-right: 37px;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (max-width: 1000px) {

   .components-wrapper > * {
      padding-left: 3%;
      padding-right: 3%;
   }

   .components-wrapper {
      padding: 0 0;
   }

   .components-wrapper .header + * {
      padding-left: 3%;
      padding-right: 3%;
      margin-left: 0;
      margin-right: 0;
   }

   .nav {
      margin-top: 5vh;
   }

   .product-categories {
      height: unset;
   }

   .product-categories > img {
      height: 250px;
      display: none;
   }

   .product-categories > li {
      width: 100%;
   }

   .product-page-segment {
      padding-top: 10px;
   }

   .buttons-overview {
      display: flex;
      flex-direction: row;
      gap: 10px;
   }

   .checked-blue ul {
      padding-left: 2em;
   }

   .checkmarks ul > li::before {
      padding-left: 2em;
   }

   .bulletin-list li::before {
      padding-left: 1.2em;
   }

   .mobile {
      display: block;
   }
   .optMobile {
      display: none;
   }
   .mobileOptIn:checked ~ .optMobile {
      display: block;
   }
   .optMobileNot#gfb {
      display: block; 
   }
   .mobileOptIn:checked ~ .optMobileNot#gfb {
      display: none !important;
   }
   .mobile .link-list {
      padding-top: 13px;
      padding-bottom: 30px;
   }
   #mobileOptIn:checked ~ .mobile .link-list {
     padding-bottom: unset;
  }
  .mobile .link-list li {
     padding-top: 2px;
  }
}

@media only screen and (max-width: 420px) {
h2 {
font-size: 1em;
}

p {
line-height: 1.4em;
}

.components-wrapper > * {
padding-left: 1%;
padding-right: 1%;
}

.nav {
margin-top: 10vh;
}

.headbar i {
font-size: 1.8em;
justify-content: space-evenly;
}

.headbar a > span {
display: none;
}

.header {
   justify-content: center;
   padding-right: 0;
   padding-left: 50px;
   /*justify-content: end;
   padding-right: 8%;*/
}

.product-categories {
display: flex;
flex-flow: column;
margin: auto;
justify-content: center;
font-size: 1em;
}

.product-categories ul {
padding-left: 15px;
padding-right: 5px;
}

.product-categories img {
width: 90vw;
padding-top: 10px;
margin: auto;
height: unset;
}

.product-photo {
flex: 1 2 max(150px, 50vw);
}

.about-product {
flex-direction: column-reverse;
}

.segment-overview-docs {
padding-left: 30px;
}

.chat-button {
right: 10px;
}

.product-page-segment {
font-size: 1.1em;
padding: 10px;
}

.product-alinks {
margin: 0;
font-size: 1.1em;
}

.product-content {
min-height: unset;
flex: 1;
}

.product-page-segment-docs h4 {
font-size: 1.16em;
}

.product-page-segment-docs a {
font-size: 1em;
}

.checked-blue ul {
padding-left: 1.6em;
}

.checkmarks ul > li::before {
padding-left: 1.6em;
}

.bulletin-list li::before {
padding-left: 1.2em;
}

.buttons-overview {
gap: 10px;
}

.buttons-overview a {
text-align: left;
display: flex;
padding-left: 36px;
padding-right: 10px;
font-size: inherit;
}

.button-green {
min-height: 3em;
align-items: center;
justify-content: flex-start;
}

.query {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
gap: 10px;
}

.response {
padding: 10px;
}

.ov-button-cont {
flex: 1 1 350px;
}

footer {
flex-direction: column;
font-size: 0.8em;
}
}

