/* styles.css */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    word-wrap: break-word;
    scroll-behavior: smooth;
}

form {
  text-align: left;
  margin: 16px 0;
}

.text-left {
  text-align: left !important;
}

/* COLORS */
/* TYPOGRAPHY */
html {
  font-family: Frutiger LT Std, Arial, Helvetica, sans-serif;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content .container {
  padding: 24px 16px 24px 16px;
  max-width: 480px;
  margin: 0 auto;
}
.content .extraWide {
  max-width: 960px !important;
}

.logo {
  display: flex;
  width: 100%;
  background-color: #005e3f;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-right: auto;
  margin-left: auto;
}
@media (prefers-color-scheme: dark) {
  .logo {
    background-color:#0e3a2d;/* #0f2921;*/
    color: #ffffff;
  }
}
.logo img {
  max-height: 56px;
}

h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.15px;
}

h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
}

a {
  color: #005e3f;
}
@media (prefers-color-scheme: dark) {
  a {
    color: #91f54a;
  }
}

h1 > a,
h2 > a,
h3 > a {
  color: #293033 !important;
}

input[type='text'],
input[type='password'],
input[type='email'] {
  background: none;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  width: 100%;
  padding: 8px 0;
  margin-bottom: 16px;
  border: none;
  border-radius: 0px;
}
input[type='text']:focus,
input[type='password']:focus,
input[type='email']:focus {
  outline: none;
}

input[type='submit'],
button {
  border-radius: 4px;
  border: none;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.25px;
  padding: 16px;
  margin-top: 16px;
  width: 100%;
  text-align: center;
  -webkit-appearance: none;
}

input::placeholder {
  color: #6d767c;
}

.toggle-visible {
  position: relative;
  float: right;
  top: -50px;
  height: 0;
}

input[type='checkbox'].css-checkbox {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

input[type='checkbox'].css-checkbox + label.css-label,
input[type='checkbox'].css-checkbox + label.css-label-dark {
  height: 24px;
  width: 24px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: middle;
  cursor: pointer;
}

input[type='checkbox'].css-checkbox:checked + label.css-label,
input[type='checkbox'].css-checkbox:checked + label.css-label-dark {
  background-position: 0 -24px;
}

label.css-label,
label.css-label-dark {
  opacity: 0.8;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

label.css-label {
  background-image: url(../img/toggle-visible-white.svg);
}

label.css-label-dark {
  background-image: url(../img/toggle-visible.svg);
}

.hint {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #ffffff;
  margin: 16px 0;
  padding: 16px;
  border-radius: 8px;
}

p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1px;
  padding-bottom: 24px;
}

strong {
  font-weight: bold;
}

body.darkmode {
  background-image: linear-gradient(144.53deg, #005e3f 13.96%, #46817d 108.38%);
  background-color: #293033;
  color: #ffffff;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
body.darkmode .panel h1 {
  margin-bottom: 32px;
}
body.darkmode .panel label {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #ffffff;
}
body.darkmode .panel input[type='text'],
body.darkmode .panel input[type='password'],
body.darkmode .panel input[type='email'] {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
body.darkmode .panel input[type='text']:focus,
body.darkmode .panel input[type='password']:focus,
body.darkmode .panel input[type='email']:focus {
  border-bottom-color: #ffffff;
}
body.darkmode .panel input[type='submit'] {
  background: #ffffff;
  color: #005e3f;
}
body.darkmode .panel .hint {
  background-color: rgba(33, 33, 33, 0.6);
  list-style: none;
}
body.darkmode .panel a {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #ffffff;
  text-decoration: none;
}

.device-wait {
  background-color: #005e3f !important;
  color: #ffffff;
}

body.lightmode {
  color: #293033;
  background-color: #ffffff;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (prefers-color-scheme: dark) {
  body.lightmode {
    background-color: #000000;
    color: #ffffff;
  }
}
body.lightmode .panel {
  padding: 0 16px 16px 16px;
  text-align: center;
}
body.lightmode .panel h1 {
  margin-bottom: 16px;
}
body.lightmode .panel label {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #6d767c;
}
@media (prefers-color-scheme: dark) {
  body.lightmode .panel label {
    color: #ffffff;
  }
}
body.lightmode .panel .listitem {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
body.lightmode .panel label.radio {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #293033;
  margin-left: 8px;
}
body.lightmode .panel input[type='text'],
body.lightmode .panel input[type='password'],
body.lightmode .panel input[type='email'] {
  color: #293033;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
}
@media (prefers-color-scheme: dark) {
  body.lightmode .panel input[type='text'],
  body.lightmode .panel input[type='password'],
  body.lightmode .panel input[type='email'] {
    color: #ffffff;
  }
}
body.lightmode .panel input[type='text']:focus,
body.lightmode .panel input[type='password']:focus,
body.lightmode .panel input[type='email']:focus {
  border-bottom-color: #6d767c;
}
body.lightmode .panel input[type='submit'],
body.lightmode .panel button {
  background: #91f54a;
  color: #004730;
}
body.lightmode .panel input[type='submit']:disabled {
  background: #f0f0f0;
  color: #c2c2c2;
}
body.lightmode .panel .hint {
  background-color: rgba(33, 33, 33, 0.8);
}
body.lightmode .panel .hint label {
  color: #ffffff;
}
body.lightmode .panel .error label {
  color: #eb0047;
}
body.lightmode .panel .error .errorMessage {
  color: #eb0047;
  display: inline;
}
body.lightmode .panel .error input[type='text'],
body.lightmode .panel .error input[type='password'],
body.lightmode .panel .error input[type='email'] {
  border-bottom: 1px solid rgba(204, 0, 51, 0.6);
}
body.lightmode .panel .error input[type='text']:focus,
body.lightmode .panel .error input[type='password']:focus,
body.lightmode .panel .error input[type='email']:focus {
  border-bottom-color: #eb0047;
}
body.lightmode .panel .errorMessage {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  display: none;
}
body.lightmode .panel .imgContainer {
  padding: 24px 0;
  text-align: center;
  max-width: 235px;
  margin: 0 auto;
}
body.lightmode .panel a.textlink {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #6d767c;
}
body.lightmode .center {
  text-align: center;
}
body.lightmode .infotext {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #6d767c;
  margin: 16px 0;
}

footer {
  background-color: #ffffff;
  text-align: center;
  padding: 32px 0;
  position: relative;
  bottom: 0;
  border-top: 1px solid #dedede;
}
@media (prefers-color-scheme: dark) {
  footer {
    background-color: #191d1f;
    color: #ffffff;
    border-top: 1px solid #6d767c;
  }
  footer a {
    color: #ffffff !important;
  }
}
footer a {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #293033;
  padding: 0 8px;
  text-decoration: none;
}

ol.number {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1px;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}
ol.number li {
  margin: 10px 0 10px 15px;
}

ul.bullet {
  list-style-type: circle;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1px;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}
ul.bullet li {
  margin: 10px 0 10px 10px;
}

p.nomargin {
  padding-bottom: 0 !important;
}

/* Confirm Device */
.confirm-list {
  margin-top: 15px;
}
.confirm-list li {
  margin: 4px 0;
  list-style: none;
}

/* Auskunftrecht */
.auskunft h2 {
  margin: 10px 0 0 0;
  font-weight: bold;
}
.auskunft h3 {
  font-weight: bold;
  margin: 10px 0 0 0;
}
.auskunft .link-uebersicht {
  color: #005e3f;
  border-bottom: 1px solid #dedede;
  margin: 20px 0 60px 0;
  text-align: center;
}
.auskunft .link-uebersicht a {
  color: #005e3f;
}
@media only screen and (max-width: 760px),
  (min-device-width: 768px) and (max-device-width: 1024px) {
  .auskunft table,
  .auskunft thead,
  .auskunft tbody,
  .auskunft th,
  .auskunft td,
  .auskunft tr {
    display: block;
    overflow-x: hidden;
  }
  .auskunft td {
    border: none !important;
  }
  .auskunft tr {
    border: 1px solid #f0f0f0;
  }
  .auskunft thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .auskunft .mobile-header td:nth-of-type(1):before {
    content: 'Personenbezogene Daten ';
    font-weight: bold;
    color: #293033;
    display: block;
  }
  .auskunft .mobile-header td:nth-of-type(2):before {
    content: 'Herkunft ';
    font-weight: bold;
    color: #293033;
  }
}

.nav-auskunft h3 {
  font-weight: bold;
}
.nav-auskunft ul {
  margin-bottom: 25px;
}
.nav-auskunft ul li {
  color: #005e3f;
  list-style-type: none;
  margin: 5px 0;
}
.nav-auskunft ul li a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1px;
  color: #005e3f;
}

.datenschutz h2 {
  font-size: 18px;
  margin: 20px 0 20px 0;
  font-weight: bold;
}

.datenschutz h3 {
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: bold;
}

.datenschutz h2 {
  font-weight: bold;
}

/* Buttons */
.btn-secondary {
  background: #ffffff;
  border: 2px solid #004730 !important;
  border-radius: 4px;
}

body.lightmode .btn-secondary {
  color: #004730 !important;
}

/* Select Device */
#selectDevice div:first-child {
  margin-top: 0 !important;
  color: #ffffff;
}
#selectDevice div {
  font-size: 16px;
}
#selectDevice div > label {
  padding-left: 10px;
  font-size: 16px;
  color: #293033;
}

/* Data Privacy Policy */
.dpp-content table {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.dpp-content h2,
.dpp-content h3 {
  font-weight: bold;
  margin-bottom: 5px;
}
.dpp-content h4 {
  margin-top: 5px;
  margin-bottom: 10px;
}
.dpp-content .list-fix {
  margin: 0 0 20px 15px !important;
}
.dpp-content .list-fix li {
  margin: 10px 0;
}
.dpp-content .list-fix li ul {
  margin-left: 20px;
}
.dpp-content .list-fix li ul li {
  margin: 5px 0;
}
.dpp-content .nav-inhalt {
  margin-bottom: 25px;
}
.dpp-content .nav-inhalt li {
  color: #005e3f;
  list-style-type: none;
  margin: 5px 0;
}
.dpp-content .nav-inhalt li a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1px;
  color: #005e3f;
}
.dpp-content .nav-inhalt li ul li {
  padding-left: 20px;
}
.dpp-content nav {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.dpp-content nav a {
  width: 50%;
}
.dpp-content nav a button {
  cursor: pointer;
  margin: 0 0 16px 0;
  border: 2px solid #91f54a;
  background: #91f54a !important;
  color: #004730 !important;
  transition: all 0.3s;
}
.dpp-content nav a button.active {
  background-color: #91f54a;
}
.dpp-content nav a button:hover {
  background: #ffffff !important;
}
.dpp-content nav a:first-child {
  margin-right: 20px;
}
.dpp-content .ddp-list {
  margin-top: 0;
  margin-bottom: 40px !important;
}
.dpp-content .ddp-list li {
  margin-top: 10px !important;
}
.dpp-content ul li {
  margin-top: 0 !important;
  font-size: 14px;
  list-style-type: none;
}
@media only screen and (max-width: 760px),
  (min-device-width: 768px) and (max-device-width: 1024px) {
  .dpp-content table,
  .dpp-content thead,
  .dpp-content tbody,
  .dpp-content th,
  .dpp-content td,
  .dpp-content tr {
    display: block;
  }
  .dpp-content td {
    border: none !important;
  }
  .dpp-content tr {
    border: 1px solid #f0f0f0;
  }
  .dpp-content nav {
    flex-direction: column;
  }
  .dpp-content nav a {
    width: 100%;
  }
  .dpp-content nav a button:hover {
    background-color: #18ab42;
  }
  .dpp-content nav a:first-child {
    margin-right: 0;
    margin-bottom: 0 !important;
  }
  .dpp-content nav a:last-child {
    margin-bottom: 25px;
  }
}

/* SetPassword */
.setPassword p small {
  font-size: 12px;
}

/* Impressum */
.impressum h2 {
  margin-bottom: 10px;
}
.impressum h3 {
  font-size: 14px;
}
.impressum p > a {
  color: #005e3f;
}
.impressum section.impressum-list-aok .transition,
.impressum section.impressum-list-aok p,
.impressum section.impressum-list-aok ul li i:before,
.impressum section.impressum-list-aok ul li i:after {
  transition: all 0.25s ease-in-out;
}
.impressum section.impressum-list-aok .no-select,
.impressum section.impressum-list-aok h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.impressum section.impressum-list-aok body {
  transform: translate(-50%, 0);
}
.impressum section.impressum-list-aok h2 {
  letter-spacing: 1px;
  display: block;
  background-color: transparent;
  width: 95%;
  margin: 0;
  cursor: pointer;
}
.impressum section.impressum-list-aok p {
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
}
.impressum section.impressum-list-aok ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 20px 0 0 0;
}
.impressum section.impressum-list-aok ul li {
  position: relative;
  padding: 0;
  margin: 20px 0 0 0;
  padding-bottom: 0px;
  padding-top: 5px;
  border-bottom: 1px solid #f0f0f0;
}
.impressum section.impressum-list-aok ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
.impressum section.impressum-list-aok ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
.impressum section.impressum-list-aok ul li:nth-of-type(3) {
  animation-delay: 1s;
}
.impressum section.impressum-list-aok ul li:last-of-type {
  padding-bottom: 0;
}
.impressum section.impressum-list-aok ul li:last-child {
  border-bottom: 0;
}
.impressum section.impressum-list-aok ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 8px;
  right: 0;
}
.impressum section.impressum-list-aok ul li i:before,
.impressum section.impressum-list-aok ul li i:after {
  content: '';
  position: absolute;
  background-color: #6d767c;
  width: 3px;
  height: 9px;
}
.impressum section.impressum-list-aok ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
.impressum section.impressum-list-aok ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
.impressum section.impressum-list-aok ul li input[type='checkbox'] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.impressum section.impressum-list-aok ul li input[type='checkbox']:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
.impressum
  section.impressum-list-aok
  ul
  li
  input[type='checkbox']:checked
  ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
.impressum
  section.impressum-list-aok
  ul
  li
  input[type='checkbox']:checked
  ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}
@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}

/* Terms of Service */
.terms-of-service table {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.terms-of-service h2 {
  font-weight: bold !important;
}
.terms-of-service ul {
  margin-bottom: 25px;
}
.terms-of-service ul li {
  margin: 15px 0;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1px;
}
.terms-of-service ul li a {
  color: #005e3f;
  font-weight: bold;
}

@media only screen and (max-width: 760px),
  (min-device-width: 768px) and (max-device-width: 1024px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }
  td {
    border: none !important;
  }
  tr {
    border: 1px solid #f0f0f0;
  }
}
/* TABLE STYLE & Responsive Table*/
.tabel-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 30px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
}

.two-colums div {
  width: 50%;
  margin: 10px 0 0 0;
  padding-bottom: 10px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}
.two-colums section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-color: #f0f0f0;
  margin: 10px 0 0 0;
  padding-bottom: 10px;
  font-size: 14px;
}

.two-rows {
  margin-top: 30px;
}
.two-rows section,
.two-rows div {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.two-rows section p,
.two-rows div p {
  width: 20%;
  flex-grow: 4;
  word-break: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1px;
  margin-bottom: 30px;
}
table .resp-table {
  width: 100%;
  display: table;
}
table .resp-table-caption {
  display: table-caption;
  font-weight: bold;
  margin: 20px 0;
}
table thead > tr {
  background: white !important;
}
table tr:nth-of-type(odd) {
  background: #f5f5f5;
}
table th {
  background: #6d767c;
  color: #ffffff;
  font-weight: bold;
}
table td {
  border-bottom: 1px solid #c2c2c2;
}
table td > p {
  padding-bottom: 0 !important;
}
table td,
table th {
  padding: 14px 10px 10px 10px;
  border: 1px solid #f0f0f0;
  text-align: left;
}

@media only screen and (min-height: 640px) {
  body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  body.smallScreen {
    height: 100vh;
  }
}
a {
  word-break: break-all !important;
}

@media only screen and (max-width: 760px),
  (min-device-width: 768px) and (max-device-width: 1024px) {
  .tabel-content {
    flex-direction: column;
  }
  .tabel-content div {
    width: 100%;
    border-bottom: none;
  }
  .small-two-colums {
    flex-direction: row !important;
    justify-content: space-between;
    word-break: break-all !important;
  }
  .small-two-colums div {
    display: flex;
    flex-wrap: wrap;
    width: 50% !important;
  }
  .small-two-colums div p {
    width: 100%;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .two-rows {
    flex-direction: row !important;
    justify-content: space-between;
    word-break: break-all !important;
  }
  .two-rows div,
  .two-rows section {
    display: flex;
    flex-wrap: wrap;
    width: 50% !important;
  }
  .two-rows div p,
  .two-rows section p {
    width: 100%;
    flex-direction: column;
    justify-content: space-evenly;
  }
}
/* System Dark/Light mode */
@media (prefers-color-scheme: dark) {
  .two-colums section,
  table tr:nth-of-type(odd) {
    background-color: #293033 !important;
  }
  .device-wait {
    background-color: #0f2921 !important;
  }
  .impressum p > a,
  .nav-auskunft ul li a,
  .auskunft .link-uebersicht a {
    color: #91f54a !important;
  }
  h1 > a,
  h2 > a,
  h3 > a {
    color: #ffffff !important;
  }
  .dpp-content nav a button:hover {
    background-color: transparent !important;
    color: #91f54a !important;
  }
  body.lightmode .panel .btn-secondary {
    background-color: transparent !important;
    border: 2px solid #91f54a !important;
    color: #91f54a !important;
  }
}
@media (prefers-color-scheme: light) {
  .btn-secondary {
    background-color: #ffffff !important;
  }
}
