@charset "UTF-8";
img {
  border-radius: 12px;
}

:root {
  /* Basisfarben und schriften werden in der Middleware aus der Datenbank geladen, in res.locals gespeichert und über das ejs-template im htmlHead.ejs eingebunden */
  /* Hellere Varianten */
  --primary-color-light: rgba(var(--primary-color), 0.8);
  --secondary-color-light: rgba(var(--secondary-color), 0.8);
  --error-color-light: rgba(var(--error-color), 0.8);
  /* Transparenzvarianten */
  --primary-color-05-transparency: rgba(var(--primary-color), 0.5);
  --header-height: 90px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font-light);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--primary-color);
  background-color: var(--background-color);
  min-width: 320px;
  line-height: 1.5;
}
body *, body *::before, body *::after {
  box-sizing: border-box;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: var(--secondary-font-regular);
  color: var(--secondary-color);
  margin: 0.5rem 0;
}
body smal {
  font-size: 1rem;
}
body li {
  list-style-type: none;
}
body a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  cursor: pointer;
}
body a:hover {
  color: var(--secondary-color);
}
body p {
  margin: 0;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--background-color);
  height: 90px;
}

.header-wrapper {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  height: 90px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 390px) {
  .header-wrapper {
    justify-content: center;
    flex-direction: column;
    text-align: left;
  }
}
.header-wrapper.admin {
  max-width: unset;
}

.admin-panel {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 1rem auto;
  padding: 1rem 0;
  background-color: var(--background-color);
  border: solid 1px var(--primary-color);
  border-radius: 5px;
}

.header-logo {
  height: 90px;
}
@media (max-width: 768px) {
  .header-logo {
    height: 120px;
    margin-left: -0.5rem;
  }
}
@media (max-width: 576px) {
  .header-logo {
    height: 90px;
  }
}
.header-logo:hover {
  transform: scale(0.99);
}
.header-logo.admin {
  height: 100px;
  margin-left: 0.5rem;
}

span#userNameAuthenticated {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  span#userNameAuthenticated {
    position: static;
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  perspective: 1000px;
  perspective-origin: center;
}
main.admin {
  flex-direction: row;
  padding: 1rem;
  align-items: flex-start;
}

.nowrap {
  white-space: nowrap;
}

form, table {
  display: block;
  overflow-x: auto;
}

section {
  position: relative;
  width: 100%;
}
section .content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: clamp(0.5rem, 2vw, 4rem);
}
section [data-content-element-id] {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.content-wrapper {
  position: relative;
}

/* Nicht mehr in verwendung, werden nun über die Datenbank gesteuert */
:root {
  --shadow-rgb: 34 54 73;
}

/* @font-face {
    font-family: 'Chivo-Light';
    src: url('/fonts/chivo/Chivo-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Chivo-Regular';
    src: url('/fonts/chivo/Chivo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Chivo-Bold';
    src: url('/fonts/chivo/Chivo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

 */
@font-face {
  font-family: "Chivo-Black";
  src: url("/fonts/chivo/Chivo-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-BlackItalic";
  src: url("/fonts/chivo/Chivo-BlackItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-Bold";
  src: url("/fonts/chivo/Chivo-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-BoldItalic";
  src: url("/fonts/chivo/Chivo-BoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-ExtraBold";
  src: url("/fonts/chivo/Chivo-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-ExtraBoldItalic";
  src: url("/fonts/chivo/Chivo-ExtraBoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-ExtraLight";
  src: url("/fonts/chivo/Chivo-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-ExtraLightItalic";
  src: url("/fonts/chivo/Chivo-ExtraLightItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-Italic";
  src: url("/fonts/chivo/Chivo-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-Light";
  src: url("/fonts/chivo/Chivo-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-LightItalic";
  src: url("/fonts/chivo/Chivo-LightItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-Medium";
  src: url("/fonts/chivo/Chivo-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-MediumItalic";
  src: url("/fonts/chivo/Chivo-MediumItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-Regular";
  src: url("/fonts/chivo/Chivo-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-SemiBold";
  src: url("/fonts/chivo/Chivo-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-SemiBoldItalic";
  src: url("/fonts/chivo/Chivo-SemiBoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-Thin";
  src: url("/fonts/chivo/Chivo-Thin.ttf") format("truetype");
}
@font-face {
  font-family: "Chivo-ThinItalic";
  src: url("/fonts/chivo/Chivo-ThinItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Chillax-Variable";
  src: url("/fonts/chillax/WEB/fonts/Chillax-Bold.woff2") format("woff2"), url("/fonts/chillax/WEB/fonts/Chillax-Variable.woff") format("woff"), url("/fonts/chillax/WEB/fonts/Chillax-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Chillax-Extralight";
  src: url("/fonts/chillax/WEB/fonts/Chillax-Extralight.woff2") format("woff2"), url("/fonts/chillax/WEB/fonts/Chillax-Extralight.woff") format("woff"), url("/fonts/chillax/WEB/fonts/Chillax-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Chillax-Light";
  src: url("/fonts/chillax/WEB/fonts/Chillax-Light.woff2") format("woff2"), url("/fonts/chillax/WEB/fonts/Chillax-Light.woff") format("woff"), url("/fonts/chillax/WEB/fonts/Chillax-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Chillax-Regular";
  src: url("/fonts/chillax/WEB/fonts/Chillax-Regular.woff2") format("woff2"), url("/fonts/chillax/WEB/fonts/Chillax-Regular.woff") format("woff"), url("/fonts/chillax/WEB/fonts/Chillax-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Chillax-Medium";
  src: url("/fonts/chillax/WEB/fonts/Chillax-Medium.woff2") format("woff2"), url("/fonts/chillax/WEB/fonts/Chillax-Medium.woff") format("woff"), url("/fonts/chillax/WEB/fonts/Chillax-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Chillax-Semibold";
  src: url("/fonts/chillax/WEB/fonts/Chillax-Semibold.woff2") format("woff2"), url("/fonts/chillax/WEB/fonts/Chillax-Semibold.woff") format("woff"), url("/fonts/chillax/WEB/fonts/Chillax-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Chillax-Bold";
  src: url("/fonts/chillax/WEB/fonts/Chillax-Bold.woff2") format("woff2"), url("/fonts/chillax/WEB/fonts/Chillax-Bold.woff") format("woff"), url("/fonts/chillax/WEB/fonts/Chillax-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-3 {
  margin: 3rem;
}

.m-4 {
  margin: 4rem;
}

.m-5 {
  margin: 5rem;
}

.m-6 {
  margin: 6rem;
}

.m-7 {
  margin: 7rem;
}

.m-8 {
  margin: 8rem;
}

.m-9 {
  margin: 9rem;
}

.m-10 {
  margin: 10rem;
}

.m-11 {
  margin: 11rem;
}

.m-12 {
  margin: 12rem;
}

.m-13 {
  margin: 13rem;
}

.m-14 {
  margin: 14rem;
}

.m-15 {
  margin: 15rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mt-11 {
  margin-top: 11rem;
}

.mt-12 {
  margin-top: 12rem;
}

.mt-13 {
  margin-top: 13rem;
}

.mt-14 {
  margin-top: 14rem;
}

.mt-15 {
  margin-top: 15rem;
}

.mr-02 {
  margin-right: 0.2rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mr-5 {
  margin-right: 5rem;
}

.mr-6 {
  margin-right: 6rem;
}

.mr-7 {
  margin-right: 7rem;
}

.mr-8 {
  margin-right: 8rem;
}

.mr-9 {
  margin-right: 9rem;
}

.mr-10 {
  margin-right: 10rem;
}

.mr-11 {
  margin-right: 11rem;
}

.mr-12 {
  margin-right: 12rem;
}

.mr-13 {
  margin-right: 13rem;
}

.mr-14 {
  margin-right: 14rem;
}

.mr-15 {
  margin-right: 15rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.mb-11 {
  margin-bottom: 11rem;
}

.mb-12 {
  margin-bottom: 12rem;
}

.mb-13 {
  margin-bottom: 13rem;
}

.mb-14 {
  margin-bottom: 14rem;
}

.mb-15 {
  margin-bottom: 15rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.ml-4 {
  margin-left: 4rem;
}

.ml-5 {
  margin-left: 5rem;
}

.ml-6 {
  margin-left: 6rem;
}

.ml-7 {
  margin-left: 7rem;
}

.ml-8 {
  margin-left: 8rem;
}

.ml-9 {
  margin-left: 9rem;
}

.ml-10 {
  margin-left: 10rem;
}

.ml-11 {
  margin-left: 11rem;
}

.ml-12 {
  margin-left: 12rem;
}

.ml-13 {
  margin-left: 13rem;
}

.ml-14 {
  margin-left: 14rem;
}

.ml-15 {
  margin-left: 15rem;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.p-4 {
  padding: 4rem;
}

.p-5 {
  padding: 5rem;
}

.p-6 {
  padding: 6rem;
}

.p-7 {
  padding: 7rem;
}

.p-8 {
  padding: 8rem;
}

.p-9 {
  padding: 9rem;
}

.p-10 {
  padding: 10rem;
}

.p-11 {
  padding: 11rem;
}

.p-12 {
  padding: 12rem;
}

.p-13 {
  padding: 13rem;
}

.p-14 {
  padding: 14rem;
}

.p-15 {
  padding: 15rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pt-10 {
  padding-top: 10rem;
}

.pt-11 {
  padding-top: 11rem;
}

.pt-12 {
  padding-top: 12rem;
}

.pt-13 {
  padding-top: 13rem;
}

.pt-14 {
  padding-top: 14rem;
}

.pt-15 {
  padding-top: 15rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pr-4 {
  padding-right: 4rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pr-8 {
  padding-right: 8rem;
}

.pr-9 {
  padding-right: 9rem;
}

.pr-10 {
  padding-right: 10rem;
}

.pr-11 {
  padding-right: 11rem;
}

.pr-12 {
  padding-right: 12rem;
}

.pr-13 {
  padding-right: 13rem;
}

.pr-14 {
  padding-right: 14rem;
}

.pr-15 {
  padding-right: 15rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.pb-11 {
  padding-bottom: 11rem;
}

.pb-12 {
  padding-bottom: 12rem;
}

.pb-13 {
  padding-bottom: 13rem;
}

.pb-14 {
  padding-bottom: 14rem;
}

.pb-15 {
  padding-bottom: 15rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pl-6 {
  padding-left: 6rem;
}

.pl-7 {
  padding-left: 7rem;
}

.pl-8 {
  padding-left: 8rem;
}

.pl-9 {
  padding-left: 9rem;
}

.pl-10 {
  padding-left: 10rem;
}

.pl-11 {
  padding-left: 11rem;
}

.pl-12 {
  padding-left: 12rem;
}

.pl-13 {
  padding-left: 13rem;
}

.pl-14 {
  padding-left: 14rem;
}

.pl-15 {
  padding-left: 15rem;
}

.global-spinner {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.global-spinner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.global-spinner__circle {
  width: 3rem;
  height: 3rem;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.global-spinner__message {
  font-size: 1.2rem;
  color: #000;
  text-align: center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.uploadResults__table {
  width: 100%;
  border-collapse: collapse;
}
.uploadResults__row:nth-child(even) {
  background-color: #f8f8f8;
}
.uploadResults__cell {
  padding: 8px;
  text-align: center;
}
.uploadResults__cell--success {
  color: green;
  font-weight: bold;
}
.uploadResults__cell--fail {
  color: red;
  opacity: 0.6;
}

body.is-printable {
  margin: 0 0.5rem;
}
body.is-printable header {
  height: 200px;
}
@media print {
  body.is-printable header {
    height: 150px;
    margin-top: -10px;
    color: black;
  }
}
body.is-printable .header-wrapper {
  height: 150px;
  flex-direction: row;
  padding: 0;
}
@media print {
  body.is-printable .header-wrapper {
    height: 100px;
  }
}
body.is-printable .header-wrapper .issuer-contacts .icon-svg {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
}
body.is-printable .header-wrapper .issuer-contacts p {
  display: flex;
}
body.is-printable .header-wrapper .print-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  margin: 0.5rem auto 0;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
@media print {
  body.is-printable .header-wrapper .print-button {
    display: none;
  }
}
body.is-printable .header-wrapper__col2 {
  padding-top: 0.5rem;
  min-width: 300px;
}
body.is-printable .issuer-address {
  padding: 1rem 0 1rem 0.5rem;
}
body.is-printable footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  text-align: center;
  align-items: center;
}
body.is-printable .footer-wrapper__impressum {
  width: 100%;
}
@media print {
  body.is-printable .footer-wrapper__impressum {
    display: none;
  }
}
body.is-printable main {
  margin: 0 0 80px 0.5rem;
  min-height: unset;
  perspective: unset;
  perspective-origin: unset;
}
@media print {
  body.is-printable main {
    color: black;
  }
}
body.is-printable section {
  min-height: unset;
}
body.is-printable h1, body.is-printable h2, body.is-printable h3, body.is-printable h4, body.is-printable h5, body.is-printable h6 {
  -moz-column-break-after: avoid;
       break-after: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
body.is-printable table {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

/** die Marker dienen als Selektoren für spezielle Textformatierungen.
    Ersetung js-seitig in frontServices/textReplacements.js
    Deklaration der Markerklassen in textReplacements -> markerClassMap{}
**/
.replace--b {
  font-weight: 700;
}

.replace--i {
  font-style: italic;
}

.replace--brand {
  font-family: var(--primary-font-light);
  color: var(--secondary-color);
  font-size: clamp(3rem, 6vw, 10rem);
  background-color: var(--box-background-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
}

.nav-top-admin button {
  width: 10rem;
  height: 2rem;
  font-size: 1rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.nav-top-admin button:hover {
  transform: scale(0.98);
}

.table-action-button {
  color: var(--primary-color);
  border: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 2rem;
  background-color: transparent;
}
.table-action-button:hover {
  color: var(--secondary-color);
}

.create-permission-button {
  color: var(--primary-color);
  border: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 2rem;
  background-color: transparent;
  width: 8rem;
  font-size: 1rem;
  background-color: buttonface;
  border-radius: 5px;
}
.create-permission-button:hover {
  color: var(--secondary-color);
}
.create-permission-button:hover {
  color: var(--primary-color);
  transform: scale(0.95);
  font-weight: bold;
}
.create-permission-button .large-char {
  font-size: 2rem;
}

.createUserButton {
  color: var(--primary-color);
  border: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 2rem;
  background-color: transparent;
  width: 8rem;
  font-size: 1rem;
  background-color: buttonface;
  border-radius: 5px;
}
.createUserButton:hover {
  color: var(--secondary-color);
}
.createUserButton:hover {
  color: var(--primary-color);
  transform: scale(0.95);
  font-weight: bold;
}

.createElementButton {
  color: var(--primary-color);
  border: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 2rem;
  background-color: transparent;
  width: 8rem;
  font-size: 1rem;
  background-color: buttonface;
  border-radius: 5px;
}
.createElementButton:hover {
  color: var(--secondary-color);
}
.createElementButton:hover {
  color: var(--primary-color);
  transform: scale(0.95);
  font-weight: bold;
}

.card-toggle-button {
  cursor: pointer;
  border: none;
  padding: 0;
  height: 2rem;
  width: 8rem;
  font-size: 1.5rem;
  background-color: var(--secondary-color);
  border-radius: 5px;
  position: relative;
  transition: transform 0.3s ease;
}
.card-toggle-button:hover {
  transform: scale(0.98);
  font-weight: normal;
}
.card-toggle-button::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}
.card-toggle-button.active::before {
  content: "-";
  font-size: 2rem;
  transform: translate(-50%, -42%) rotate(180deg);
}

.scroll-button-wrapper {
  padding: 3rem 0;
  width: 100%;
  text-align: center;
}

.scroll-button, .show-cart-summary-button, .scroll-button-bar__button, .scroll-button-container__button {
  color: var(--primary-color);
  border: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 2rem;
  background-color: transparent;
  width: 8rem;
  font-size: 1rem;
  background-color: buttonface;
  border-radius: 5px;
  width: 15rem;
  font-size: 1.2rem;
  background-color: var(--secondary-color);
  padding: 0.5rem;
}
.scroll-button:hover, .show-cart-summary-button:hover, .scroll-button-bar__button:hover, .scroll-button-container__button:hover {
  color: var(--secondary-color);
}
.scroll-button:hover, .show-cart-summary-button:hover, .scroll-button-bar__button:hover, .scroll-button-container__button:hover {
  color: var(--primary-color);
  transform: scale(0.95);
  font-weight: bold;
}
.scroll-button:hover, .show-cart-summary-button:hover, .scroll-button-bar__button:hover, .scroll-button-container__button:hover {
  transform: scale(0.99);
  font-weight: normal;
}
.scroll-button-questionMark {
  padding: 1px 0;
  width: 1rem;
  height: 1rem;
  font-size: 0.8rem;
  margin-left: 0.25rem;
  border-radius: 50%;
  font-weight: bold;
}
.scroll-button-questionMark:hover {
  transform: scale(0.95);
  font-weight: bold;
}

.scroll-button-container__button {
  width: 15rem;
  padding: 0.5rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.scroll-button-bar__button {
  width: 12rem;
  padding: 0.3rem 0.8rem;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
}

.add-to-cart-button,
.remove-all-cart-items-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
  border: none;
  padding: 0;
  height: 2rem;
  font-size: 1rem;
  background-color: white;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  width: 8rem;
  position: relative;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.add-to-cart-button__icon,
.remove-all-cart-items-button__icon {
  width: 1.5rem;
  height: 1.5rem;
}
.add-to-cart-button:hover,
.remove-all-cart-items-button:hover {
  transform: scale(0.95);
  border-color: var(--primary-color);
}

.remove-all-cart-items-button {
  margin-top: 1rem;
  width: 12rem;
}
.remove-all-cart-items-button:hover {
  transform: scale(0.98);
}
.remove-all-cart-items-button.inactive {
  display: none;
}

.show-cart-summary-button {
  margin-top: 0.5rem;
}

.adminPanelNavigationButton {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  font-size: 1.3rem;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.adminPanelNavigationButton:hover {
  transform: scale(0.9);
}
.adminPanelNavigationButton::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 0.3s ease, content 0.3s ease, font-size 0.2s ease;
  font-size: 1.1rem;
}
.adminPanelNavigationButton--edit::before {
  content: "✎";
}
.adminPanelNavigationButton--edit.active::before {
  content: "✓";
}
.adminPanelNavigationButton--delete::before {
  content: "🗑";
  font-size: 1.2rem;
}
.adminPanelNavigationButton--childNav::before {
  content: "+↓";
}
.adminPanelNavigationButton--mainNav::before {
  content: "+→";
}
.adminPanelNavigationButton--showCreateButtons::before {
  content: "+↓";
}
.adminPanelNavigationButton--showCreateButtons.active::before {
  content: "×";
  transform: translate(-35%, -50%) rotate(90deg);
  font-size: 1.6rem;
  font-weight: bold;
}

.button-container-show-create-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.uploadButton {
  color: var(--primary-color);
  border: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 2rem;
  background-color: transparent;
  width: 8rem;
  font-size: 1rem;
  background-color: buttonface;
  border-radius: 5px;
  background-color: var(--secondary-color);
  height: 2rem;
}
.uploadButton:hover {
  color: var(--secondary-color);
}
.uploadButton:hover {
  color: var(--primary-color);
  transform: scale(0.95);
  font-weight: bold;
}
.uploadButton:hover {
  transform: scale(0.98);
  font-weight: normal;
}

button[data-action=deleteContentElement] {
  background-color: red;
  font-weight: bold;
  color: white;
  border: none;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}
button[data-action=deleteContentElement]:hover {
  transform: scale(0.98);
}

button[data-action=triggerPrintDialog] {
  border: none;
  background: none;
  cursor: pointer;
}
button[data-action=triggerPrintDialog]:hover {
  transform: scale(0.95);
}
@media print {
  button[data-action=triggerPrintDialog] {
    display: none !important;
  }
}

.set-filter {
  cursor: pointer;
  border: none;
  padding: 0;
  height: 2rem;
  font-size: 1rem;
  border: 1px solid var(--box-background-color);
  border-radius: 5px;
  width: 14rem;
  position: relative;
  transition: all 0.3s ease;
  background-color: var(--background-color);
  color: var(--primary-color) .set-filter --active;
  color-background-color: var(--secondary-color);
  color-border-color: var(--secondary-color);
  color-color: var(--primary-color);
}
.set-filter--inactive {
  background-color: var(--error-color);
  border-color: var(--error-color);
  color: var(--primary-color);
}
.set-filter:hover {
  transform: scale(0.98);
}

.nav-toggle-icon {
  display: none;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
nav ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
nav ul li .adminPanelNavigation {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
nav ul li a {
  display: inline-flex;
  align-items: center;
  flex: 1;
}

.nav-adminPanelContentElement-filtered ul {
  flex-wrap: wrap;
  flex-direction: row !important;
}
.nav-adminPanelContentElement-filtered ul li {
  width: auto !important;
}

.nav-left-admin-wrapper {
  padding-left: 0;
  background-color: var(--background-color);
  width: 260px;
  height: 100%;
}
@media (max-width: 768px) {
  .nav-left-admin-wrapper {
    width: 0;
    padding: 0;
  }
}

.nav-left-admin {
  padding: 0;
}
.nav-left-admin ul {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .nav-toggle-icon-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 3rem;
    background-color: white;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .nav-toggle-icon {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.5s ease;
  }
  .nav-toggle-icon::before {
    content: "☰";
  }
  .nav-toggle-icon.active {
    transform: rotate(180deg);
  }
  .nav-toggle-icon.active::before {
    content: "✕";
  }
}
@media (max-width: 768px) {
  nav {
    background-color: var(--secondary-color-light);
    padding: 0;
  }
  nav ul {
    width: 100%;
    padding: 0;
    gap: 0.2rem;
    display: flex;
    flex-direction: column;
  }
  nav ul li {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
  nav ul li .adminPanelNavigation {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    gap: 0.8rem;
  }
  nav ul li .adminPanelNavigationLeft,
  nav ul li .adminPanelNavigationRight {
    display: flex;
    gap: 0.8rem;
  }
  nav ul li a {
    width: 100%;
    font-size: clamp(1.5rem, 2vw, 2rem);
    padding: 0.8rem 1.5rem;
  }
}
#mobileNav {
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  margin-bottom: 3rem;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 0.5s ease-out;
  z-index: 999;
  background-color: white;
  display: flex;
  flex-direction: column;
}

#mobileNav.active {
  transform: translateX(0);
}

.nav-filter {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-filter ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
}
.nav-filter li {
  display: flex;
  flex: 0 0 auto;
  width: auto;
}

.nav-top {
  padding-bottom: 0.5rem;
}

.nav-lang {
  position: absolute;
  right: 0.1rem;
  top: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .nav-lang {
    flex-direction: row !important;
  }
  .nav-lang ul {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav-lang li {
    display: flex;
  }
}
@media (max-width: 390px) {
  .nav-lang {
    margin-right: 1rem;
  }
}
.nav-lang button {
  background-color: transparent;
  cursor: pointer;
  width: 1.2rem;
  height: 1.2rem;
  overflow: hidden;
  text-indent: -9999px;
  text-align: center;
  vertical-align: middle;
  font-size: 1rem;
  color: var(--primary-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  background-size: 135%;
  background-position: center center;
  background-repeat: no-repeat;
  transition: color 0.3s ease, transform 0.3s ease;
}
.nav-lang button:hover {
  padding: 0;
  text-indent: 0;
  font-size: 0.8rem;
  font-weight: bold;
}
.nav-lang button[class*=setLanguage-]:hover {
  background-image: none;
}
.nav-lang button[class*=setLanguage-de-] {
  background-image: url("/flags/at.svg");
}
.nav-lang button[class*=setLanguage-en-] {
  background-image: url("/flags/en.svg");
}
.nav-lang button[class*=setLanguage-fr-] {
  background-image: url("/flags/fr.svg");
}
.nav-lang button[class*=setLanguage-it-] {
  background-image: url("/flags/it.svg");
}
.nav-lang button[class*=setLanguage-es-] {
  background-image: url("/flags/es.svg");
}
.nav-lang button[class*=setLanguage-pt-] {
  background-image: url("/flags/pt.svg");
}
.nav-lang button[class*=setLanguage-nl-] {
  background-image: url("/flags/nl.svg");
}
.nav-lang button[class*=setLanguage-pl-] {
  background-image: url("/flags/pl.svg");
}
.nav-lang button[class*=setLanguage-ru-] {
  background-image: url("/flags/ru.svg");
}
.nav-lang button[class*=setLanguage-uk-] {
  background-image: url("/flags/uk.svg");
}
.nav-lang button[class*=setLanguage-tr-] {
  background-image: url("/flags/tr.svg");
}
.nav-lang button[class*=setLanguage-zh-] {
  background-image: url("/flags/zh.svg");
}
.nav-lang button[class*=setLanguage-ja-] {
  background-image: url("/flags/ja.svg");
}
.nav-lang button[class*=setLanguage-ro-] {
  background-image: url("/flags/ro.svg");
}
.nav-lang button[class*=setLanguage-cs-] {
  background-image: url("/flags/cs.svg");
}
.nav-lang button[class*=setLanguage-hu-] {
  background-image: url("/flags/hu.svg");
}
.nav-lang button[class*=setLanguage-sr-] {
  background-image: url("/flags/sr.svg");
}
.nav-lang button[class*=setLanguage-hr-] {
  background-image: url("/flags/hr.svg");
}

.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.accordion .div-responsive-wrapper {
  margin-top: 0;
}
@media (max-width: 768px) {
  .accordion .div-responsive-wrapper {
    gap: 0.5rem;
    margin-top: 1rem;
  }
}
.accordion .right-side-wrapper {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.accordion__item {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
}
.accordion__item__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  cursor: pointer;
  transition: padding 0.3s ease, background-color 0.3s ease, font-size 0.3s ease;
}
.accordion__item__header-main {
  display: flex;
  flex-direction: row;
  flex: 1;
  align-items: center;
}
@media (max-width: 576px) {
  .accordion__item__header-main {
    flex-direction: column;
  }
}
.accordion__item__header--active {
  background-color: #f0f0f0;
  padding: 1rem;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .accordion__item__header {
    padding: 0;
  }
}
@media (max-width: 576px) {
  .accordion__item-name {
    width: 100%;
  }
}
.accordion__item__toggle-details-button {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-right: 0.5rem;
  position: relative;
  width: 2rem;
  height: 2rem;
}
.accordion__item__toggle-details-button::before {
  content: "▶";
  position: absolute;
  font-size: 1rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
}
.accordion__item--active .accordion__item__toggle-details-button::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__item__content {
  height: 0;
  overflow: hidden;
  padding: 0;
  font-size: 1rem;
  transition: height 0.4s ease, padding 0.4s ease;
  will-change: height;
}
.accordion__item-icon {
  width: clamp(2rem, 5vw, 4rem);
  height: clamp(2rem, 5vw, 4rem);
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.accordion__item--inactive {
  display: none !important;
}
.accordion__item__answer {
  margin: 0.5rem clamp(0.5rem, 4vw, 4rem);
}

.sum-info-block {
  text-align: right;
  padding: 1rem;
  padding-left: 4rem;
}

.products__description {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.products__price {
  font-size: 1rem;
  font-weight: bold;
}

.price-hint-wrapper {
  white-space: nowrap;
}

.price-fallback-hint {
  font-weight: normal;
  margin-right: 1rem;
}

.card {
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgb(var(--shadow-rgb)/0.2), 0 8px 24px -8px rgb(var(--shadow-rgb)/0.25);
  max-width: 600px;
  min-height: 40vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
}
.card:hover {
  box-shadow: 0 2px 4px 0 rgb(var(--shadow-rgb)/0.22), 0 12px 32px -10px rgb(var(--shadow-rgb)/0.3);
}
.card__header {
  padding: 1rem;
}
.card__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.card__content-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-grow: 1;
}
.card__content-wrapper .card__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(100%);
}
.card__content-wrapper .card__content svg,
.card__content-wrapper .card__content img {
  position: absolute;
  width: clamp(2.5rem, 6vw, 5rem);
  top: 50%;
  left: 50%;
  max-width: 40%;
  height: auto;
  transform: translate(-50%, -50%);
}
.card__content-wrapper .card__content svg {
  stroke-width: 1;
  fill: var(--primary-color);
}
.card__content-wrapper .card__content img[src$=".webp"] {
  max-width: 100%;
  border-radius: 0;
}
.card__content-wrapper .card__content .rocket-launch-icon {
  fill: var(--primary-color);
  transition: fill 0.3s ease;
}
.card__content-wrapper .card__content .rocket-launch-icon:hover {
  fill: rgb(255, 106, 0);
}
.card__content-wrapper .card__content--visible {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}
.card__content-wrapper .card__content--visible::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: clamp(8rem, 20vw, 15rem);
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-50%);
  z-index: -1;
}
.card__content-wrapper .card__content--hidden {
  padding: 0 1rem;
  z-index: 0;
}
.card__content-wrapper--active .card__content--visible {
  opacity: 0;
  transform: translateY(100%);
  z-index: 0;
}
.card__content-wrapper--active .card__content--hidden {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

select {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
  font-size: inherit;
}
select:focus {
  outline: var(--secondary-color) 1px solid;
  border: none;
}

input[type=checkbox]:disabled {
  cursor: not-allowed;
  position: relative;
}
input[type=checkbox]:disabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(240, 240, 240);
  border-radius: 3px;
  z-index: -1;
}

/* 
#formPermissionDefaultAssignment {
    margin: 5px 0 0 0;
    border: 1px solid var(--primary-color);
    border-radius: 5px;

    legend {
        padding: 1rem;
    }

    .form-group {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;

        label {
            margin: 0.7rem 0;
            width: 100%;
        }

        input[type="checkbox"] {
            @include mixins.inputCheckbox;
            margin: 0 5px 0 0;
            padding: 0;

        }
    }
}

 */
#checkoutForm {
  max-width: 100%;
  font-size: 1.1rem;
  text-align: left;
}
#checkoutForm .div-responsive-wrapper {
  margin-top: 1rem;
}
#checkoutForm p {
  margin: 1rem 0;
  line-height: 1.5;
}
#checkoutForm a {
  display: inline-block;
  font-size: inherit;
  color: blue;
  text-decoration: underline;
}
#checkoutForm a:hover {
  transform: scale(0.98);
}
#checkoutForm .checkout-left,
#checkoutForm .checkout-right {
  text-align: left;
  flex: 1 1 auto;
}
@media (max-width: 768px) {
  #checkoutForm .checkout-left,
  #checkoutForm .checkout-right {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
#checkoutForm .form-partial {
  border-radius: 5px;
  background-color: #f9f9f9;
  padding: 0 1rem 1rem 1rem;
}
#checkoutForm .legal-items {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
#checkoutForm .legal-items input[type=checkbox], #checkoutForm .legal-items input[type=radio] {
  transform: scale(1);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1rem;
  height: 1rem;
  background-color: white;
  border: 1px solid var(--primary-color);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
}
#checkoutForm .legal-items input[type=checkbox]:hover, #checkoutForm .legal-items input[type=radio]:hover {
  transform: scale(1.1);
}
#checkoutForm .legal-items input[type=checkbox] {
  border-radius: 3px;
}
#checkoutForm .legal-items input[type=checkbox]:checked::after {
  content: "✓";
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#checkoutForm .legal-items input[type=radio] {
  border-radius: 50%;
}
#checkoutForm .legal-items input[type=radio]:checked::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#checkoutForm .legal-items label {
  margin: 0;
}
#checkoutForm .legal-items label span {
  display: none;
}

.payment-container {
  margin-top: 1rem;
}
.payment-container__text {
  margin-bottom: 2rem;
}
.payment-container .stripe-icons {
  margin: 1rem auto;
  max-width: 500px;
  display: flex;
  justify-content: space-between;
}
.payment-container .stripe-icons img {
  border-radius: 0;
  width: 4rem;
}

tbody tr:not(.additional-info-row):hover {
  background-color: var(--secondary-color-light);
}

td {
  border-radius: 5px;
  vertical-align: top;
}
td.editable {
  border: 1px solid transparent;
}
td.editable:hover {
  border: 1px solid var(--primary-color);
}
td.tableCardCell {
  border: 1px solid var(--primary-color);
  padding: 0.5rem;
}

.nested-role-table {
  font-size: 1.2rem;
}
.nested-role-table input[type=checkbox], .nested-role-table input[type=radio] {
  transform: scale(1);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1rem;
  height: 1rem;
  background-color: white;
  border: 1px solid var(--primary-color);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.nested-role-table input[type=checkbox]:hover, .nested-role-table input[type=radio]:hover {
  transform: scale(1.1);
}
.nested-role-table input[type=checkbox] {
  border-radius: 3px;
}
.nested-role-table input[type=checkbox]:checked::after {
  content: "✓";
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nested-role-table input[type=radio] {
  border-radius: 50%;
}
.nested-role-table input[type=radio]:checked::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nested-role-table th {
  padding: 0 1rem;
}
.nested-role-table .rowHeader {
  text-align: left;
}

.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

#errorMessage {
  padding: 90px 3rem 3rem 3rem;
  background-color: var(--error-color-light);
}
#errorMessage.adminError {
  padding: 1.5rem;
  overflow: hidden;
}
#errorMessage p {
  margin: 0;
}
#errorMessage.animate-out {
  padding: 0;
  margin: 0;
  height: 0;
  transition: all 5s ease-out;
}

span.error-message {
  color: var(--error-color);
  text-align: left;
  display: block;
  padding-top: 4px;
  font-size: 1rem;
  font-style: italic;
}

.invoice {
  width: 100%;
  max-width: 1440px;
}
.invoice__addressBlocks {
  display: flex;
  padding-top: 1rem;
  flex-wrap: wrap;
}
.invoice__addressBlocks div {
  flex: 1 1 320px;
  min-width: 320px;
}

/* 
    Styles für Email-Versand -> Outlook-kompatibel -> siehe outlook_stylingregeln.md
*/
.email-body {
  margin: 0 4px;
  width: 680px;
  max-width: 100%;
  color: #100053 !important;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}
.email-body [role=heading] {
  color: #100053;
  font-weight: bold;
}
.email-body [role=heading][aria-level="1"] {
  font-size: 24px;
  margin: 32px 0 8px;
}
.email-body [role=heading][aria-level="2"] {
  font-size: 20px;
  margin: 24px 0 8px;
  color: #2DE199;
}
.email-body [role=heading][aria-level="3"] {
  font-size: 16px;
  margin: 16px 0 8px;
}
.email-body div {
  margin: 0;
  padding: 0;
}
.email-body p {
  margin: 8px 0;
}
.email-body table {
  color: #100053 !important;
}
.email-body .email-content {
  margin: 32px 0;
}
.email-body .header-logo {
  display: block;
  width: 180px;
  height: 68.5px;
  margin: -5px 0 0 -7px;
}
.email-body .header-company-name {
  font-size: 14px;
}
.email-body img.icon-svg {
  width: 16px;
  height: 16px;
}
.email-body img.recommendedModules-table__icon {
  width: 24px;
  height: 24px;
}
.email-body img.gastro-check__results__intro_icon {
  width: 48px;
  height: 48px;
}
.email-body .email-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14rem;
  height: 2rem;
  background: #2DE199;
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  margin: 1rem auto;
  cursor: pointer;
}
.email-body .recommendedModules-table__iconCell {
  width: 30px;
}
.email-body .gastro-check__results__recommended-modules, .email-body .gastro-check__results__full-potential {
  padding: 0;
}
.email-body .gastro-check__results__table-right div {
  height: 24px;
}
.email-body .gastro-check__results__prognosis-value {
  width: 100px;
}
.email-body .gastro-check__results__note {
  margin: 16px 0;
  font-size: 12px;
}

.meeting-swal.swal2-popup {
  width: min(1280px, 96vw);
  max-width: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 0;
}
.meeting-swal .meeting-swal-body {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}
.meeting-swal .meeting-frame {
  height: min(92vh, 900px);
  min-height: 720px;
  overflow: hidden;
}
.meeting-swal .meeting-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile: volle Höhe nutzen */
@media (max-width: 640px) {
  .meeting-swal.swal2-popup {
    width: 98vw;
    border-radius: 12px;
  }
  .meeting-swal .meeting-frame {
    height: calc(100vh - 96px);
    min-height: 560px;
  }
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 0.5rem;
}
.hero .text-column {
  flex: 2 1 60%;
}
.hero .image-column {
  flex: 1 1 clamp(250px, 30%, 400px);
  padding: 2rem 0;
  display: flex;
  justify-content: center;
}
.hero .image-column img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .image-column img[src$=".svg"] {
  height: auto;
  max-width: 50%;
}
@media (max-width: 576px) {
  .hero {
    flex-direction: column;
    padding: 0;
    padding-top: 0;
    gap: 1rem;
  }
  .hero .text-column,
  .hero .image-column {
    width: 100%;
    flex: unset;
    padding: 0;
    margin: 0;
  }
  .hero .text-column {
    padding: 0 1rem;
  }
  .hero .image-column img {
    border-radius: 0;
  }
}
@media (max-width: 390px) {
  .hero .image-column {
    order: -1;
  }
}

.heroTextCentered {
  position: relative;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}
.heroTextCentered::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.heroTextCentered__headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: clamp(1rem, 4vw, 2rem) 0;
}
.heroTextCentered__subline {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  margin: clamp(1rem, 5vw, 3rem) 0;
}
.heroTextCentered__text {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1rem, 4vw, 2rem) 0;
  color: var(--background-color);
}

.scroll-button-bar__button {
  width: 25rem;
  height: 5rem;
  font-size: 1.4rem;
}

.h1-heading {
  margin-top: clamp(0rem, 5vw, 5rem);
  padding: 0 1rem;
}
.h1-heading h1 {
  font-size: clamp(2rem, 4vw, 7rem);
}

.groupHeading h2 {
  color: var(--primary-color);
}

.quantity-controll {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  width: 8rem;
  height: 2rem;
  margin-left: auto;
  background-color: var(--primary-color);
  border-radius: 5px;
  padding: 0 0.25rem;
}
.quantity-controll__button {
  background: none;
  border: none;
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  color: var(--background-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantity-controll__button:hover {
  transform: scale(1.2);
}
.quantity-controll__input {
  width: 2.5rem;
  height: 1.5rem;
  text-align: center;
  font-size: 1rem;
  border: none;
  border-radius: 3px;
  padding: 0;
}

#shop-totals-short {
  display: flex;
  justify-content: flex-end;
  max-width: 1440px;
}
@media (max-width: 390px) {
  #shop-totals-short {
    justify-content: center;
  }
}

.price-preview {
  width: 390px;
  border: 1px solid var(--box-background-color);
  border-radius: 6px;
  padding: 0.2rem;
  font-size: 0.8rem;
  line-height: 1;
}
.price-preview__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}
.price-preview__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.price-preview__details-button {
  background-color: var(--secondary-color);
  border: none;
  color: var(--primary-color);
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 5px;
  height: 1.5rem;
  width: 12rem;
}
.price-preview__details-button:hover {
  transform: scale(0.99);
}

.filter-bar-wrapper {
  display: flex;
  flex-direction: row;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 1px solid #f0f0f0;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin: 2rem 0;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .filter-bar-wrapper {
    padding: 0.5rem;
  }
}
.filter-bar-wrapper__filter-icon {
  height: 2rem;
  width: auto;
  margin-right: 1rem;
}

.price-model-selector {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 1px solid #f0f0f0;
  border-radius: 50px;
  padding: 0.5rem 1rem;
}
@media (max-width: 768px) {
  .price-model-selector {
    padding: 0.5rem;
  }
}
.price-model-selector label {
  cursor: pointer;
  border: none;
  padding: 0;
  height: 2rem;
  font-size: 1rem;
  border-radius: 5px;
  width: 8rem;
  position: relative;
  transition: all 0.3s ease;
  background-color: var(--box-background-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-model-selector label input[type=radio] {
  display: none;
}
.price-model-selector label:hover {
  transform: scale(0.98);
}
.price-model-selector label:has(input[type=radio]:checked) {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.checkout-items {
  width: 100%;
  margin-bottom: 2rem;
}
.checkout-items__heading {
  color: var(--primary-color);
}
.checkout-items__group {
  padding: 0.1rem 0 1rem 1rem;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  margin-bottom: 1.5rem;
}
.checkout-items__group-heading {
  color: var(--primary-color);
}
.checkout-items__group-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  table-layout: fixed;
}
.checkout-items__group-table th,
.checkout-items__group-table td {
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--box-background-color);
  vertical-align: middle;
  white-space: nowrap;
}
.checkout-items__group-table th {
  background-color: var(--box-background-color);
  text-align: left;
}
.checkout-items__group-table th:nth-child(n+3) {
  text-align: right;
}
.checkout-items__group-table td:nth-child(n+3) {
  text-align: right;
}
.checkout-items__group-table th:nth-child(1),
.checkout-items__group-table td:nth-child(1) {
  width: 20.5rem;
}
.checkout-items__group-table th:nth-child(2),
.checkout-items__group-table td:nth-child(2) {
  width: 5rem;
}
.checkout-items__group-table th:nth-child(3),
.checkout-items__group-table td:nth-child(3) {
  width: 7rem;
}
.checkout-items__group-table th:nth-child(4),
.checkout-items__group-table td:nth-child(4) {
  width: 5rem;
}
.checkout-items__group-table th:nth-child(5),
.checkout-items__group-table td:nth-child(5) {
  width: 9rem;
}
.checkout-items__group-table th:nth-child(6),
.checkout-items__group-table td:nth-child(6) {
  width: 7rem;
}
.checkout-items__group-table th:nth-child(7),
.checkout-items__group-table td:nth-child(7) {
  width: 9rem;
}
.checkout-totals {
  width: 100%;
}
.checkout-totals__container {
  width: 100%;
  background-color: var(--box-background-color);
  border-radius: 5px;
  overflow-x: auto;
}
.checkout-totals__heading {
  color: var(--primary-color);
}
.checkout-totals__group {
  padding: 1rem;
  border-left: 5px solid var(--primary-color);
}
.checkout-totals__group-heading {
  color: var(--primary-color);
  font-size: 0.95rem;
}
.checkout-totals__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.checkout-totals__table th,
.checkout-totals__table td {
  padding: 0.4rem 0.6rem;
  white-space: nowrap;
  border: 1px solid var(--background-color);
}
.checkout-totals__table th {
  background-color: var(--box-background-color);
  text-align: left;
}
.checkout-totals__table th:nth-child(n+3) {
  text-align: right;
}
.checkout-totals__table td:nth-child(n+3) {
  text-align: right;
}
.checkout-totals__table th:nth-child(1),
.checkout-totals__table td:nth-child(1) {
  width: 10rem;
}
.checkout-totals__table th:nth-child(2),
.checkout-totals__table td:nth-child(2) {
  width: 27.5rem;
}
.checkout-totals__table th:nth-child(3),
.checkout-totals__table td:nth-child(3) {
  width: 9rem;
}
.checkout-totals__table th:nth-child(4),
.checkout-totals__table td:nth-child(4) {
  width: 7rem;
}
.checkout-totals__table th:nth-child(5),
.checkout-totals__table td:nth-child(5) {
  width: 9rem;
}
.checkout-totals__table tfoot td {
  font-weight: bold;
}

.gastro-check .grow-100 {
  flex-grow: 100;
}
.gastro-check-box-shadow {
  box-shadow: 0 1px 2px 0 rgb(var(--shadow-rgb)/0.2), 0 8px 24px -8px rgb(var(--shadow-rgb)/0.25);
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 6px;
}
.gastro-check-box-shadow:hover {
  box-shadow: 0 2px 4px 0 rgb(var(--shadow-rgb)/0.22), 0 12px 32px -10px rgb(var(--shadow-rgb)/0.3);
}
.gastro-check img {
  width: clamp(2rem, 5vw, 4rem);
  height: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 768px) {
  .gastro-check img {
    width: 3rem;
    height: 3rem;
    display: block;
    margin: 0.5rem auto 0;
  }
}
.gastro-check__button {
  display: block;
  background-color: var(--secondary-color);
  border: none;
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  height: 3rem;
  width: 14rem;
  margin: 1rem auto;
}
.gastro-check__button:hover {
  transform: scale(0.98);
}
.gastro-check__intro {
  margin: 2rem 0 0;
}
.gastro-check__form {
  display: none;
  max-width: unset;
}
.gastro-check__form-active {
  display: block;
}
.gastro-check__form-border {
  border-bottom: 1px solid #f0f0f0;
  padding: 1rem 0;
}
@media (max-width: 576px) {
  .gastro-check__form-border label {
    margin: 0;
  }
}
.gastro-check__results {
  display: none;
}
.gastro-check__results-active {
  display: block;
}
.gastro-check__results__table-right {
  vertical-align: middle;
}
.gastro-check__results__recommended-modules, .gastro-check__results__full-potential, .gastro-check__results__per-email {
  border-bottom: 1px solid #f0f0f0;
  padding: 2rem;
}
@media (max-width: 576px) {
  .gastro-check__results__recommended-modules, .gastro-check__results__full-potential, .gastro-check__results__per-email {
    padding: 0.2rem;
  }
}
.gastro-check__results__prognosis {
  margin: 1rem 0;
}
.gastro-check__results__prognosis p {
  margin: 0.2rem;
}
.gastro-check__results__prognosis p > span:nth-child(1) {
  margin-right: 0.2rem;
  line-height: 1.5;
  display: inline-block;
  width: 7rem;
  font-weight: bold;
  text-align: right;
}
.gastro-check__results__prognosis-text {
  text-align: left;
}
.gastro-check__results .recommendedModules-table {
  padding-top: 1rem;
}
.gastro-check__results .recommendedModules-table__icon {
  vertical-align: middle;
  width: 1.5rem;
  height: 1.5rem;
}
.gastro-check__results .div-responsive-wrapper {
  margin: 2rem;
}
@media (max-width: 768px) {
  .gastro-check__results .div-responsive-wrapper {
    margin: 1rem;
    gap: 1rem;
  }
}
@media (max-width: 576px) {
  .gastro-check__results .div-responsive-wrapper {
    margin: 0.5rem 0;
    gap: 1rem;
  }
}
.gastro-check__results__investment {
  margin: 1rem 0 !important;
  display: flex;
  align-items: center;
  justify-content: left !important;
  gap: 2rem;
}
.gastro-check__results__investment-once {
  font-size: 1.2rem;
}
.gastro-check__results__investment-once #resultsInvestition {
  font-weight: bold;
}
.gastro-check__results__roi-label {
  width: 350px;
}
.gastro-check__results__roi-value {
  text-align: right;
}
.gastro-check__results__note {
  margin: 2rem;
  font-size: 0.9rem;
}
.gastro-check #sendResultsEmail {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  display: block;
  margin: 1rem auto;
  padding: 1rem;
  width: 20rem;
  border-radius: 5px;
  outline-color: var(--secondary-color);
}
.gastro-check label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}
.gastro-check label input[type=checkbox], .gastro-check label input[type=radio] {
  transform: scale(1);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1rem;
  height: 1rem;
  background-color: white;
  border: 1px solid var(--primary-color);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.gastro-check label input[type=checkbox]:hover, .gastro-check label input[type=radio]:hover {
  transform: scale(1.1);
}
.gastro-check label input[type=checkbox] {
  border-radius: 3px;
}
.gastro-check label input[type=checkbox]:checked::after {
  content: "✓";
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gastro-check label input[type=radio] {
  border-radius: 50%;
}
.gastro-check label input[type=radio]:checked::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gastro-check label input[type=checkbox], .gastro-check label input[type=radio] {
  order: 0;
  flex: 0 0 1rem;
  margin: 0;
}
@media (max-width: 576px) {
  .gastro-check label input[type=checkbox], .gastro-check label input[type=radio] {
    margin: 0.3rem auto;
  }
}
.gastro-check label input:not([type=checkbox]):not([type=radio]) {
  order: 1;
  flex: 0 0 1rem;
}
.gastro-check label span {
  order: 0;
  flex: 0 0 25rem;
}
@media (max-width: 576px) {
  .gastro-check label {
    gap: 0.5rem;
  }
}
.gastro-check__indicators label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}
.gastro-check__indicators label input[type=checkbox], .gastro-check__indicators label input[type=radio] {
  transform: scale(1);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1rem;
  height: 1rem;
  background-color: white;
  border: 1px solid var(--primary-color);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.gastro-check__indicators label input[type=checkbox]:hover, .gastro-check__indicators label input[type=radio]:hover {
  transform: scale(1.1);
}
.gastro-check__indicators label input[type=checkbox] {
  border-radius: 3px;
}
.gastro-check__indicators label input[type=checkbox]:checked::after {
  content: "✓";
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gastro-check__indicators label input[type=radio] {
  border-radius: 50%;
}
.gastro-check__indicators label input[type=radio]:checked::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gastro-check__indicators label input[type=checkbox], .gastro-check__indicators label input[type=radio] {
  order: 0;
  flex: 0 0 10rem;
  margin: 0;
}
@media (max-width: 576px) {
  .gastro-check__indicators label input[type=checkbox], .gastro-check__indicators label input[type=radio] {
    margin: 0.3rem auto;
  }
}
.gastro-check__indicators label input:not([type=checkbox]):not([type=radio]) {
  order: 1;
  flex: 0 0 10rem;
}
.gastro-check__indicators label span {
  order: 0;
  flex: 0 0 20rem;
}
@media (max-width: 576px) {
  .gastro-check__indicators label {
    gap: 0;
    margin-top: 0.5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .gastro-check__indicators label > * {
    width: 100%;
  }
  .gastro-check__indicators label input:not([type=checkbox]):not([type=radio]) {
    flex: 0 0 auto;
    width: 100%;
  }
  .gastro-check__indicators label span {
    flex: 0 0 auto;
  }
}

.asset-list {
  box-shadow: 0 1px 2px 0 rgb(var(--shadow-rgb)/0.2), 0 8px 24px -8px rgb(var(--shadow-rgb)/0.25);
  max-width: 1440px;
}
.asset-list:hover {
  box-shadow: 0 2px 4px 0 rgb(var(--shadow-rgb)/0.22), 0 12px 32px -10px rgb(var(--shadow-rgb)/0.3);
}
.asset-list__left, .asset-list__right {
  flex: 0 0 50%;
}
.asset-list__left {
  overflow: hidden;
  padding: 2rem 3.5rem;
  border-radius: 6px 0 0 6px;
}
.asset-list__left-header {
  margin: 0 0 0.5rem 0;
}
@media (max-width: 768px) {
  .asset-list__left {
    padding: 2rem 1rem;
    border-radius: 0;
  }
}
.asset-list__right {
  background-color: var(--box-background-color);
  overflow: hidden;
  padding: 2rem;
  border-radius: 0 6px 6px 0;
}
@media (max-width: 768px) {
  .asset-list__right {
    border-radius: 0;
    padding: 2rem 1.5rem;
  }
}
.asset-list__list {
  margin: 0;
  padding: 0;
}
.asset-list__item::before {
  content: "✓";
  margin-right: 0.3rem;
  font-size: 1rem;
}
.asset-list .div-responsive-wrapper {
  gap: 0;
}

#f26a53cf-a5a1-427e-8a1e-195b0841200d div.asset-list__left {
  position: relative;
}
#f26a53cf-a5a1-427e-8a1e-195b0841200d div.asset-list__left::after {
  content: "";
  position: absolute;
  top: 1.3rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background-image: url("/images/img/rocket_launch_RED.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  opacity: 0.95;
}
@media (max-width: 576px) {
  #f26a53cf-a5a1-427e-8a1e-195b0841200d div.asset-list__left::after {
    top: 0;
    width: 2rem;
    height: 2rem;
  }
}

.contact {
  box-shadow: 0 1px 2px 0 rgb(var(--shadow-rgb)/0.2), 0 8px 24px -8px rgb(var(--shadow-rgb)/0.25);
  max-width: 1440px;
}
.contact a {
  font-size: inherit;
}
.contact label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-size: 0.9rem;
}
.contact label input[type=checkbox], .contact label input[type=radio] {
  transform: scale(1);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1rem;
  height: 1rem;
  background-color: white;
  border: 1px solid var(--primary-color);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.contact label input[type=checkbox]:hover, .contact label input[type=radio]:hover {
  transform: scale(1.1);
}
.contact label input[type=checkbox] {
  border-radius: 3px;
}
.contact label input[type=checkbox]:checked::after {
  content: "✓";
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact label input[type=radio] {
  border-radius: 50%;
}
.contact label input[type=radio]:checked::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact label input[type=checkbox], .contact label input[type=radio] {
  order: 0;
  flex: 0 0 1rem;
  margin: 0;
}
@media (max-width: 576px) {
  .contact label input[type=checkbox], .contact label input[type=radio] {
    margin: 0.3rem auto;
  }
}
.contact label input:not([type=checkbox]):not([type=radio]) {
  order: 1;
  flex: 0 0 1rem;
}
.contact label span {
  order: 0;
  flex: 0 0 25rem;
}
@media (max-width: 576px) {
  .contact label {
    gap: 0.5rem;
  }
}
.contact:hover {
  box-shadow: 0 2px 4px 0 rgb(var(--shadow-rgb)/0.22), 0 12px 32px -10px rgb(var(--shadow-rgb)/0.3);
}
.contact img.icon-svg {
  width: 2rem;
  height: clamp(1.5rem, 3vw, 2rem);
  margin-right: 0.5rem;
  display: block;
}
.contact__left, .contact__right {
  flex: 0 0 50%;
}
.contact__left {
  overflow: hidden;
  padding: 2rem 3.5rem;
  border-radius: 6px 0 0 6px;
}
.contact__left-header {
  margin: 0 0 0.5rem 0;
}
@media (max-width: 768px) {
  .contact__left {
    padding: 2rem 1rem;
    border-radius: 0;
  }
}
.contact__right {
  background-color: var(--box-background-color);
  overflow: hidden;
  padding: 2rem;
  border-radius: 0 6px 6px 0;
}
@media (max-width: 768px) {
  .contact__right {
    border-radius: 0;
    padding: 2rem 1.5rem;
  }
}
.contact__info {
  margin: 1rem 0;
}
.contact__info td {
  vertical-align: middle;
}
.contact__info--company {
  height: 6rem;
}
.contact__info--vcard {
  height: 5rem;
}
.contact__info--vcard td {
  vertical-align: bottom;
}
.contact__info--newsletter {
  height: 5rem;
}
.contact__info--newsletter td {
  vertical-align: bottom;
}
.contact__info--newsletter-text {
  font-size: 0.85rem;
}
.contact__form {
  max-width: 550px;
}
.contact span.grow-100 {
  flex: unset;
}
.contact #contactMessage {
  width: 100%;
  height: 200px;
  resize: vertical;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-family: inherit;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  box-sizing: border-box;
}
.contact #contactMessage:focus {
  outline: none;
  border-color: var(--secondary-color);
}
.contact .div-responsive-wrapper {
  gap: 0;
}
.contact__submit-button {
  display: block;
  background-color: var(--secondary-color);
  border: none;
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  height: 3rem;
  width: 14rem;
  margin: 1rem auto;
}
.contact__submit-button:hover {
  transform: scale(0.98);
}
.contact__newsletter-button {
  background-color: var(--secondary-color);
  border: none;
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  height: 3rem;
  width: 14rem;
}
.contact__newsletter-button:hover {
  transform: scale(0.98);
}

.scroll-button-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.25rem, 1vw, 0.75rem);
  margin: clamp(1rem, 4vw, 3rem) 0;
}
.scroll-button-bar__button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-button-bar__button:has(img) {
  justify-content: space-between;
}
@media (max-width: 576px) {
  .scroll-button-bar {
    flex-direction: column;
    margin: 0;
  }
}

.scroll-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(1rem, 4vw, 3rem) 0;
}

.faq-element .accordion__item {
  padding: 0;
}
.faq-element .accordion__item__header {
  font-size: 1.1rem;
}
.faq-element .accordion__item__toggle-details-button::before {
  content: "+";
}
.faq-element .accordion__item--active .accordion__item__toggle-details-button::before {
  transform: translate(-50%, -50%) rotate(180deg);
  content: "-";
  font-size: 1.5rem;
}

.mittagsmenue {
  max-width: clamp(80%, 85vw, 1080px);
  margin: clamp(1rem, 4vw, 3rem) auto;
  padding: clamp(0.5rem, 2vw, 1.5rem);
}
.mittagsmenue h3 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: clamp(0.25rem, 1vw, 0.75rem);
  color: var(--primary-color);
}
.mittagsmenue h4 {
  text-align: center;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: normal;
  color: var(--secondary-color);
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}
.mittagsmenue p {
  text-align: center;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: #666;
  line-height: 1.5;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}
.mittagsmenue__tage {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}
.mittagsmenue__tag {
  border-bottom: 1px solid #ddd;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(0.75rem, 2vw, 1rem);
}
.mittagsmenue__tag:last-child {
  border-bottom: none;
}
.mittagsmenue__tag h5 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--secondary-color);
  margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
}
.mittagsmenue__tag ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mittagsmenue__tag ul li {
  margin-bottom: clamp(0.15rem, 0.5vw, 0.35rem);
  color: var(--primary-color);
}
.mittagsmenue__tag ul li span {
  color: #999;
  font-size: clamp(0.8em, 1.2vw, 0.9em);
  margin-left: clamp(0.3em, 0.6vw, 0.6em);
}
.mittagsmenue__tag ul li.vorspeise {
  font-style: italic;
}
.mittagsmenue__tag ul li.hauptspeise {
  font-weight: 600;
}
.mittagsmenue__tag ul li.dessert {
  color: var(--secondary-color);
}
.mittagsmenue__tag.mittagsmenue__keinmenue {
  border-bottom: none;
  text-align: center;
}
.mittagsmenue__tag.mittagsmenue__keinmenue p {
  font-style: italic;
  color: #888;
  margin-top: clamp(0.25rem, 1vw, 0.5rem);
}
@media (hover: hover) {
  .mittagsmenue__tag:not(.mittagsmenue__keinmenue):hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--secondary-color);
    transition: background 0.3s ease, border-color 0.3s ease;
  }
}

.speisekarte {
  max-width: clamp(80%, 85vw, 1080px);
  margin: clamp(1rem, 4vw, 3rem) auto;
  padding: clamp(0.5rem, 2vw, 1.5rem);
}
.speisekarte__header {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: clamp(0.25rem, 1vw, 0.75rem);
  color: var(--primary-color);
}
.speisekarte__intro {
  text-align: center;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: #666;
  line-height: 1.5;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}
.speisekarte__products {
  display: flex;
  flex-direction: column;
}
.speisekarte__category-header {
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}
.speisekarte__category-header:not(:first-child) {
  margin-top: clamp(0.75rem, 2vw, 1rem);
}
.speisekarte__category-title {
  display: block;
  text-align: left;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--secondary-color);
  margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
  font-weight: 600;
}
.speisekarte__product {
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(0.75rem, 2vw, 1rem);
}
.speisekarte__product:nth-child(2n) {
  background: rgba(212, 160, 23, 0.04);
}
.speisekarte__product:last-child {
  background: transparent;
}
.speisekarte__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.speisekarte__row--sub {
  justify-content: flex-start;
  margin-top: 0.15rem;
}
.speisekarte__name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  min-width: 0;
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transform-origin: left center;
  will-change: transform;
}
.speisekarte__name-main {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--primary-color);
}
@media (hover: hover) {
  .speisekarte__product:hover .speisekarte__name, .speisekarte__product:focus-within .speisekarte__name {
    transform: scale(1.06);
  }
}
@media (hover: hover) {
  .speisekarte__product:hover .speisekarte__price, .speisekarte__product:focus-within .speisekarte__price {
    transform: scale(1.06);
  }
}
.speisekarte__name-main {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--primary-color);
}
.speisekarte__allergens {
  color: #9a9a9a;
  font-size: 0.9em;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.speisekarte__price {
  margin-left: 1rem;
  flex: 0 0 auto;
  text-align: right;
  font-weight: 400;
  color: var(--primary-color);
  font-size: clamp(1rem, 2vw, 1.2rem);
  /* allow smooth transform on hover together with the name */
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transform-origin: right center;
  will-change: transform;
}
.speisekarte__name-2nd-line {
  color: var(--primary-color);
  opacity: 0.9;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.link-to-extern__p {
  text-align: center;
  margin: 0;
}
.link-to-extern__label {
  font-size: 1.2rem;
}
.link-to-extern__label:hover {
  color: var(--primary-color);
  font-weight: 600;
}
.link-to-extern__label ::after {
  content: " ↗";
}
.link-to-extern__subtext {
  text-align: center;
  margin: 0;
  font-size: 0.8rem;
}

.portfolio-slider__viewport {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.portfolio-slider__track {
  display: flex;
  align-items: center;
  gap: 5rem;
  transition: transform 0.6s ease;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.portfolio-slider__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  opacity: 0.5;
  transform: scale(0.9);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.portfolio-slider__item.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.portfolio-slider__image {
  display: block;
  width: 400px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Dots */
.portfolio-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.portfolio-slider__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: white;
  color: white;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.portfolio-slider__dot.is-active {
  transform: scale(1.4);
  background-color: var(--secondary-color);
}

/* Mobile: klassischer Vollbreiten-Slider */
@media (max-width: 390px) {
  .portfolio-slider__track {
    gap: 0;
  }
  .portfolio-slider__item {
    flex: 0 0 100%;
    opacity: 1;
    transform: none;
  }
  .portfolio-slider__image {
    width: 100%;
  }
}
/* Controls */
.portfolio-slider__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.portfolio-slider__control--previous {
  left: 0.5rem;
}

.portfolio-slider__control--next {
  right: 0.5rem;
}

.impressum__ecg {
  margin-top: 2rem;
  font-size: 0.9rem;
  text-align: left;
}

.div-responsive-wrapper {
  display: flex;
  gap: 2rem;
  flex-direction: row;
  justify-content: center;
}
.div-responsive-wrapper.priceSelectAndSummary {
  margin-top: 0;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .div-responsive-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}

footer {
  width: 100%;
  background-color: var(--background-color);
  padding: 1rem 0;
}
footer .footer-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.main-admin {
  display: flex;
  padding: 90px 2rem 0 2rem;
}

.content-admin-wrapper {
  flex-grow: 1;
}

form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 1px;
}
form label {
  display: block;
  margin-top: 10px;
  text-align: left;
}
form select {
  font-family: var(--primary-font-regular);
}
form input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
}
form input:focus {
  outline: var(--secondary-color) 1px solid;
  border: none;
}
form input.error, form div.error {
  border-color: var(--error-color);
  box-shadow: 0 0 3px var(--error-color);
}
form input.error:focus, form div.error:focus {
  outline: var(--error-color);
  border: none;
}
form div.error {
  padding-left: 0.4rem;
}

.editing[contenteditable],
.editing[contenteditable]:focus {
  border-radius: 5px;
  border: 1px solid var(--secondary-color);
  outline: none;
}

.editable {
  position: relative;
  padding-right: 40px;
}
.editable::after {
  content: " ✎";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.editable[contenteditable=true]::after {
  content: " ✔";
}

.flash-success {
  background-color: var(--secondary-color);
  transition: background-color 0.5s ease-out;
}

div:where(.swal2-container),
div:where(.swal2-container).swal2-top,
div:where(.swal2-container).swal2-center,
div:where(.swal2-container).swal2-bottom {
  padding: 0;
}

.swal2-wide {
  width: 1000px;
}
@media (max-width: 768px) {
  .swal2-wide {
    width: 100%;
  }
}
.swal2-wide .swal2-confirm.swal2-styled,
.swal2-wide .swal2-confirm,
.swal2-wide .swal2-cancel.swal2-styled,
.swal2-wide .swal2-cancel {
  width: 20rem;
}

.swal2-actions {
  gap: 1rem;
  width: 100%;
  padding: 0.5rem 3rem;
}

.swal2-confirm.swal2-styled,
.swal2-confirm {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border-radius: 5px;
  width: 10rem;
  height: 3rem;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.swal2-confirm.swal2-styled:hover,
.swal2-confirm:hover {
  transform: scale(0.98);
}
.swal2-confirm.swal2-styled::after,
.swal2-confirm::after {
  content: " ✔";
  font-size: 1.5rem;
}
.swal2-confirm.swal2-styled:focus,
.swal2-confirm:focus {
  outline: var(--primary-color) 1px solid;
  border: none;
  box-shadow: unset;
}

.swal2-cancel.swal2-styled,
.swal2-cancel {
  background-color: var(--error-color);
  color: var(--primary-color);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border-radius: 5px;
  width: 10rem;
  height: 3rem;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.swal2-cancel.swal2-styled:hover,
.swal2-cancel:hover {
  transform: scale(0.98);
}
.swal2-cancel.swal2-styled::after,
.swal2-cancel::after {
  content: " ✖";
  font-size: 1.5rem;
}
.swal2-cancel.swal2-styled:focus,
.swal2-cancel:focus {
  outline: var(--primary-color) 1px solid;
  border: none;
  box-shadow: unset;
}

.swal2-html-container ul {
  padding: 0;
}

.swal2-html-container form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
}
.swal2-html-container form select:focus {
  outline: var(--secondary-color) 1px solid;
  border: none;
}
.swal2-html-container form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
}
.swal2-html-container form textarea:focus {
  outline: var(--secondary-color) 1px solid;
  border: none;
}

.swal2-html-container .error-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  text-align: left;
}
.swal2-html-container .error-list li {
  margin: 0.25rem 0;
}/*# sourceMappingURL=main.css.map */