
        *, *::before, *::after {
  box-sizing: border-box;
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/inter-v19-latin-200.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v19-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v19-latin-600.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/inter-v19-latin-800.woff2') format('woff2'); 
}

        body {
            font-family: Inter, Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
        }

        header {
            background-color: #fff;
            color: #000;
            text-align: center;
        /*    box-shadow: 5px 5px 8px 0px rgba(202,202,202,0.9);
            -webkit-box-shadow: 5px 5px 8px 0px rgba(202,202,202,0.9);
            -moz-box-shadow: 5px 5px 8px 0px rgba(202,202,202,0.9);*/
        }

        #header-logo {
            display: flex; align-items: center;
        }

        .menu-header {
            display: flex;
            flex-wrap: nowrap;       
            align-items: center;
            padding-right: 20px;
        }
        .col-header-left {
            flex: 7 1 0;   /* grow = 3, shrink = 1, basis = 0 */
            min-width: 0;  /* verhindert, dass Inhalt rausdrückt */
            text-align: left;
            position: relative;
        }
        .col-header-right {
            flex: 1 1 0;   /* grow = 1, shrink = 1, basis = 0 */
            min-width: 0;
            text-align: right;
        }

         @media (max-width: 768px) { 
                .col-header-left {
            flex: 1 1 0;
                }
         }

        button {
            cursor: pointer;
            color: #000!important;
        }

        button:hover {
            cursor: pointer;
            color: #fff!important;
        }

        nav {
            background-color: #fff;
            overflow: visible;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            max-width: 1400px;
            display: flex;
            justify-content: center;
            font-size: 13px;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: #000;
            text-decoration: none;
            /*padding: 14px 20px;*/
            padding: 10px 5px;
            display: block;
            font-weight: bold;
        }

        nav ul li a:hover {
            /*background-color: #555;*/
            color: #a31b33;
        }

        nav ul li a:focus {
            /*background-color: #555;*/
            color: #a31b33;
        }

        nav ul li a:active {
            /*background-color: #555;*/
            color: #a31b33;
        }

        #languageSwitcher {
            padding: 7px 24px;
            font-weight: bold;
            font-size: 14px;
            border-radius: 0;
            border: 2px solid #000;
            background-color: #fff;
            color: #000;
            position: relative;
        }

        #languageSwitcher::before,
#languageSwitcher::after {
  --size: 0.3rem;
  position: absolute;
  content: "";
  right: 1rem;
  pointer-events: none;
  border-radius: 0;
}

#languageSwitcher::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid black;
  top: 40%;
  border-radius: 0;
}

#languageSwitcher::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid black;
  top: 55%;
  border-radius: 0;
}

        .hamburger {
            display: none;
            cursor: pointer;
            padding: 14px 20px;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: #000;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        .desktop-menu {
            display: flex;
        }

        
        #mobile-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            max-height: 0;
            overflow: hidden;       
            transition: max-height 0.3s ease;
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            z-index: 20;
            display: flex;
            flex-direction: column;
        }

        #mobile-menu.show {
            max-height: 400px;
        }
        
        /*
        #mobile-menu {
            display: none;
            flex-direction: column;
            background-color: #fff;
            padding: 10px 0;
        }

        #mobile-menu.show {
            display: flex;
        }
        */

        

        main {
            padding: 20px;
            background-color: #fff;
            max-width: 1600px;
            margin: 20px auto;
            /*box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 15px;*/
        }

        section {
            padding: 20px 20px;
            border: 1px solid #29a9e1;
            border-radius: 15px;
        }


        footer {
            background-color: #f2f2f2;
            color: #000;
            text-align: center;
            padding: 40px 0;
            bottom: 0;
            width: 100%;
            font-size: 1em;
            margin-top: 5%;
        }


        /* ── Geo-Suggestion Modal ─────────────────────────── */
.geo-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.geo-modal.hidden {
  display: none;
}
.geo-modal-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  max-width: 90%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  text-align: center;
}
.geo-modal-content button {
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
/* ────────────────────────────────────────────────────────── */


        .address {
            margin-top: 1em;
        }

        .address p {
            margin:0px;
            line-height: 1.2em;
        }


        .dbp-title {
            color: #5a6675;
            font-size: 14px;
            margin-bottom: -10px;
        }


        .dbp-title-light {
            color: #ffffff;
            font-size: 14px;
            margin-bottom: -10px;
        }

        .dbp-title-lightgrey {
            color: #c0c4c8;
            font-size: 14px;
            margin-bottom: -10px;
        }

        .dbp-title-black {
            color: #000;
            font-size: 14px;
            margin-bottom: -10px;
        }


        .dbp-value {
            color: #000000;
            font-size: 18px;
            display: inline-block;
        }


        .dbp-value-light {
            color: #ffffff;
            font-size: 18px;
           /* display: inline-block;*/
        }


        .dbp-value-light a {
            color: #ffffff;
            font-size: 18px;
            text-decoration: underlined;
        }


        .dbp-unit {
            font-weight: normal;
            color: #00427f;
            font-size: 18px;
            display: inline-block;
        }


        .dbp-timestamp {
            font-weight: normal;
            font-style: italic;
            color: #00427f;
            font-size: 14px;
            margin-top: -12px;
        }

        .dbp-value a {
            color:#000;
        }

        .dbp-value a:hover {
            color:#a31b33;
        }

        .dbp-value a:focus {
            color:#a31b33;
        }

        .dbp-value a:active {
            color:#a31b33;
        }


        .dpp-button {
            background-color: #fff;
            color: #000;
            padding: 7px 24px;
            font-size: 18px;
            font-weight: bold;
            border: 2px solid #000;
            cursor: pointer;
            transition: background-color .2s ease;
                }

        .dpp-button:hover {
            background-color: #a31b33;
            color: #fff;
            padding: 7px 24px;
            font-size: 18px;
            font-weight: bold;
            border: 2px solid #a31b33;
            cursor: pointer;
            transition: background-color .2s ease;
                }

        .dpp-button,
.dpp-button a {
  background-color: #fff;
  color: #000 !important;       /* „!important“, um wirklich alles zu überschreiben */
  text-decoration: none !important;
  padding: 7px 24px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color .2s ease;
}

.dpp-button:hover,
.dpp-button:hover a {
  background-color: #a31b33;
  color: #fff !important;
  text-decoration: none !important;
}

        @media (max-width: 768px) {
            .dpp-button {
                display: block;
                width: 100%;
                box-sizing: border-box;
                padding: 1.2em 1.5em;
            }
        }

    /*
        .raw-data-button {
            padding: 1rem;
        }


        .restricted-data .raw-data-button {
            padding: 0;
        }

        .raw-data-button button {
            background-color: #29a9e1;
            color: #fff;
            border: 1px solid #29a9e1;
            padding: 12px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 10px;
        }

        .raw-data-button button:hover {
            background-color: #fff;
            color: #29a9e1;
            border: 1px solid #29a9e1;
            padding: 12px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 10px;
        }
    */



        #check-btn {
            background-color: #fff;
            color: #000;
            border: 2px solid #000;
            padding: 7px 24px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 0;
            float: left;
        }

        #check-btn:hover {
            background-color: #a31b33;
            color: #fff;
            border: 2px solid #a31b33;
            padding: 7px 24px;
            font-size: 14px;
            font-weight: bold;
            float: left;
        }


        #fetch-btn {
            background-color: #29a9e1;
            color: #fff;
            border: 1px solid #29a9e1;
            padding: 12px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 10px;
            float: right;
        }


        #fetch-btn:hover {
            background-color: #fff;
            color: #29a9e1;
            border: 1px solid #29a9e1;
            padding: 12px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 10px;
            float: right;
        }




        #refresh-btn {
            background-color: #fff;
            color: #000;
            border: 2px solid #000;
            padding: 7px 24px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 0;
            float: right;
        }


        #refresh-btn:hover {
            background-color: #a31b33;
            color: #fff;
            border: 2px solid #a31b33;
            padding: 7px 24px;
            font-size: 14px;
            font-weight: bold;
            float: right;
        }


        #export-btn {
            background-color: #29a9e1;
            color: #fff;
            border: 1px solid #29a9e1;
            padding: 12px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 10px;
            float: right;
        }


        #export-btn:hover {
            background-color: #fff;
            color: #29a9e1;
            border: 1px solid #29a9e1;
            padding: 12px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 10px;
            float: right;
        }


        #export-original-btn {
            background-color: #29a9e1;
            color: #fff;
            border: 1px solid #29a9e1;
            padding: 12px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 10px;
            float: left;
        }


        #export-original-btn:hover {
            background-color: #fff;
            color: #29a9e1;
            border: 1px solid #29a9e1;
            padding: 12px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 10px;
            float: left;
        }


        img {
            width: 100%;
        /*    border-radius: 15px;box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
            -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
            -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3); */
        } 

        .ext-loaded-image {
            width: 100%;
            height: auto;
        /*  border-radius: 15px; */
            box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
            -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
            -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
        }

        .ext-loaded-image[data-filter-value="URL_SwisspearlLogo"] {
            width: 266px;
            border-radius: 0;
            box-shadow: none;
        }


        h2 {
            color:#29a9e1;
            padding-left: 20px;
            margin-bottom: 0;
        }

        h3 {
            color:#29a9e1;
            margin-bottom: 0;
        }

        h4 {
            color:#29a9e1;
            font-size: 18px;
            font-style: italic;
            margin-bottom: 0;
        }

        .product-description-column p {
            margin-top: 5px;
            margin-bottom: 5px;
            font-weight:normal;
        }

        #content-general-product-description p {
            margin-top: 5px;
            margin-bottom: 5px;
            font-weight:normal;
        }


        #title-icon {
            margin-top:0.83em; 
            font-size: 24px; 
            margin-left:1em;
        }

@media (max-width:768px) {

    #title-icon {
            margin-top:0.6em; 
            font-size: 20px; 
            margin-left:0;
        }

    #h2-general-product-description, #h2-technicalproperties, #h2-dangeroussubstances, #h2-safeusage, #h2-application, #h2-recycle, #h2-ecodesign, #h2-additional-information, #h2-map {
font-size: 18px;
}
}

  .loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .loader.hidden {
    display: none;
  }

/*
  #login-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(41,169,225,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  #login-loader.hidden {
    display: none;
  }


  #login-loader-message {
    color: #fff;
    font-weight: bold;
    font-size: 2.5em;
  }
*/


  .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  #loader-message {
    margin-top: 10px;
    font-size: 1.5em;
  }


/* 2col-container */

.responsive-two-column-grid {
    display:block;
}


/* 2col-columns */
.responsive-two-column-grid > * {
    padding:20px;
}


/* 2col-tablet breakpoint */
@media (min-width:768px) {

    .responsive-two-column-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}



/* 3col-container */
.responsive-three-column-grid {
    display:block;
}

/* 3col-columns */
.responsive-three-column-grid > * {
    padding:1rem;
}


/* 3col-tablet breakpoint */
@media (min-width:768px) {

    .responsive-three-column-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* 4col-container */
.responsive-four-column-grid {
    display:block;
}


/* 4col-columns */
.responsive-four-column-grid > * {
    padding:1rem;
}


/* 4col-tablet breakpoint */
@media (min-width:768px) {

    .responsive-four-column-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}



#check-fetch-header {
    border: 1px solid #000;
    border-radius: 0px;
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
}


#export-header {
display: none!important;
    margin-top: 20px;
    border: 1px solid #00427f;
    border-radius: 15px;
    background-color: #e6f5ff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
}



.check-button .status {
  margin-top: 0.5em;
  padding-left: 1.5em;
  font-size: 0.9em;
  display: none; /* zunächst versteckt */
}

.check-button .status.visible {
  display: inline-block;
  align-items: center;
}

.check-button .status .success {
  color: green;
  font-weight: bold;
  font-size: 1.5em;
  margin-right: 0.3em;
}

.check-button .status .error {
  color: red;
  font-weight: bold;
  font-size: 1.5em;
  margin-right: 0.3em;
}


.refresh-button .status.visible {
  display: inline-block;
  float: right;
  margin-right: 10px;
}


.refresh-button .status .success {
    color: green;
    font-weight: bold;
    font-size: 1.5em;
}


.refresh-button .status .error {
    color: red;
    font-weight: bold;
    font-size: 1.5em;
}


.refresh-button .notification-fetch-refresh, .timestamp {
    font-size: 0.9em;
}


.export-button .status {
  margin-top: 0.5em;
  padding-left: 1.5em;
  font-size: 0.9em;
  float: right;
  display: none;
}

.export-button .status.visible {
  display: inline-block;
  align-items: center;
}

.export-button .status .success {
  color: green;
  font-weight: bold;
  font-size: 1.5em;
  margin-right: 0.3em;
}

.export-button .status .error {
  color: red;
  font-weight: bold;
  font-size: 1.5em;
  margin-right: 0.3em;
}


.export-original-button .status {
  margin-top: 0.5em;
  padding-left: 1.5em;
  font-size: 0.9em;
  display: none;
}

.export-original-button .status.visible {
  display: inline-block;
  align-items: center;
}

.export-original-button .status .success {
  color: green;
  font-weight: bold;
  font-size: 1.5em;
  margin-right: 0.3em;
}

.export-original-button .status .error {
  color: red;
  font-weight: bold;
  font-size: 1.5em;
  margin-right: 0.3em;
}


.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.popup.hidden {
  display: none;
}


.popup-content {
  position: relative;
  background: #29a9e1;
  padding: 1rem;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.popup-content h2 {
    color: #fff;
    padding-left: 0px;  
}

.popup-content label {
    color: #fff;
}

.popup-content .popup-close {
    color: #fff;
}



.popup-content-rawdata {
  position: relative;
  background: #fff;
  padding: 1rem;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}



.popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}


.code-viewer {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: monospace;
  font-size: 0.9rem;
  line-height: 1.2;
}


#qrcode {
      max-width: 200px;
      height: auto;
      background-color: #fff;
      padding: 15px;
      border-radius: 15px;
      float: right;
    }

@media (min-width: 768px) {
      #qrcode {
        margin-top: 50%;
        margin-right: 15px;
      }
    }

@media (max-width: 768px) {
      #qrcode {
        margin-bottom: 15px;
      }
    }


/*  Toggle Switch  */

.toggleSwitch span span {
    display: none;
}  
  
.toggleSwitch {
    display: inline-block;
    height: 18px;
    position: relative;
    overflow: visible;
    padding: 0;
    cursor: pointer;
    width: 200px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius:0;
    height:34px;
}
.toggleSwitch * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.toggleSwitch label,
.toggleSwitch > span {
    line-height: 20px;
    height: 20px;
    vertical-align: middle;
}
.toggleSwitch input:focus ~ a,
.toggleSwitch input:focus + label {
    outline: none;
}
.toggleSwitch label {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
}
.toggleSwitch input {
    position: absolute;
    opacity: 0;
    z-index: 5;
}
.toggleSwitch > span {
    position: absolute;
    left: 0;
    width: calc(100% - 6px);
    margin: 0;
    text-align: left;
    white-space: nowrap;
  margin:0 3px;
}
.toggleSwitch > span span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: block;
    width: 50%;
    margin-left: 50px;
    text-align: left;
    font-size: 14px;
    width: auto;
    left: 0;
    top: -1px;
    opacity: 1;
    width:40%;
    text-align: center;
  line-height:34px;
}
.toggleSwitch a {
    position: absolute;
    right: 50%;
    z-index: 4;
    display: block;
    top: 3px;
    bottom: 3px;
    padding: 0;
    left: 3px;
    width: 50%;
    background-color: #a31b33;
    border-radius: 0px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.toggleSwitch > span span:first-of-type {
    color: #FFF;
    opacity: 1;
    left: 0;
    margin: 0;
    width: 50%;
}
.toggleSwitch > span span:last-of-type {
    left:auto;
    right:0;
    color: #000;
    margin: 0;
    width: 50%;
}
.toggleSwitch > span:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: -2px;
    /* background-color: #fafafa;
    border: 1px solid #ccc; */
    border-radius: 0px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.toggleSwitch input:checked ~ a {
    left: calc(50% - 3px);
}
.toggleSwitch input:checked ~ span:before {
    /* border-color: #0097D1;
    box-shadow: inset 0 0 0 30px #0097D1; */
}
.toggleSwitch input:checked ~ span span:first-of-type {
    left:0;
    color:#000;
}
.toggleSwitch input:checked ~ span span:last-of-type {
    /* opacity: 1;
    color: #fff;     */
    color:#FFF;
}
/* Switch Sizes */
.toggleSwitch.large {
    width: 60px;
    height: 27px;
}
.toggleSwitch.large a {
    width: 27px;
}
.toggleSwitch.large > span {
    height: 29px;
    line-height: 28px;
}
.toggleSwitch.large input:checked ~ a {
    left: 41px;
}
.toggleSwitch.large > span span {
    font-size: 1.1em;
}
.toggleSwitch.large > span span:first-of-type {
    left: 50%;
}
.toggleSwitch.xlarge {
    width: 80px;
    height: 36px;
}
.toggleSwitch.xlarge a {
    width: 36px;
}
.toggleSwitch.xlarge > span {
    height: 38px;
    line-height: 37px;
}
.toggleSwitch.xlarge input:checked ~ a {
    left: 52px;
}
.toggleSwitch.xlarge > span span {
    font-size: 1.4em;
}
.toggleSwitch.xlarge > span span:first-of-type {
    left: 50%;
}

  /*  End Toggle Switch  */


/* CSS-Tabs */

    .tabs-desktop {
      max-width: 100%;
      margin: 0 auto;
      box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
      -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
      -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    }

    .tabs-desktop input[type="radio"] {
      display: none;
    }

    .tabs-desktop .tab-labels {
      display: flex;
      border-bottom: 2px solid #29a9e1;
    }

    .tabs-desktop .tab-labels label {
      flex: 1;
      padding: 0.75rem;
      text-align: center;
      cursor: pointer;
      background: #f7f7f7;
      border: 1px solid #29a9e1;
      border-bottom: none;
      transition: background 0.3s;
      border-radius: 15px 15px 0px 0px;
    }

    .tabs-desktop .tab-labels label:hover {
      background: #e2e2e2;
    }

    .tabs-desktop .tab-content {
      border: 1px solid #29a9e1;
      border-radius: 0px 0px 15px 15px;
      padding: 1rem;
      margin-bottom: 2em;
    }

    /* Aktives Tab markieren */
    #tab1:checked ~ .tab-labels label[for="tab1"],
    #tab2:checked ~ .tab-labels label[for="tab2"],
    #tab3:checked ~ .tab-labels label[for="tab3"],
    #tab4:checked ~ .tab-labels label[for="tab4"],
    #tab5:checked ~ .tab-labels label[for="tab5"],
    #tab6:checked ~ .tab-labels label[for="tab6"],
    #tab7:checked ~ .tab-labels label[for="tab7"] {
      background: #00427f;
      color: #fff;
      font-weight: bold;
      border: 1px solid #00427f;
    }



        /* nur aktiven Inhalt anzeigen */
    .tabs-desktop .tab-content > div { display: none; }
    /* Inhalt der jeweiligen Tabs */
    #tab1:checked ~ .tab-content .content1,
    #tab2:checked ~ .tab-content .content2,
    #tab3:checked ~ .tab-content .content3,
    #tab4:checked ~ .tab-content .content4,
    #tab5:checked ~ .tab-content .content5,
    #tab6:checked ~ .tab-content .content6,
    #tab7:checked ~ .tab-content .content7 {
      display: block;
    }

    .section-in-tabs {
        border: none;
        padding: 0px;
    }

        /* Container 1/3-2/3 */

    .container2 {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 2rem;
      margin-top: 2rem;
      padding: 0;
    }

    .container2 .one-third {
      flex: 0 0 33%;
      padding-right: 0.5rem;
    }

    .container2 .two-thirds {
      flex: 0 0 64%;
      padding-left: 0.5rem;
      border: none;
      border-radius: 15px;
      margin-left: auto;
    /*  background: linear-gradient(119deg,rgba(192, 196, 200, 1) 34%, rgba(160, 166, 170, 1) 100%);*/
    background: #5a6675;
    }


/* Accordion (Mobile) */

    .tabs-accordion { max-width: 800px; margin: 0 auto; }

    .tabs-accordion summary {
      padding: 0.75rem;
      cursor: pointer;
      list-style: none;
      user-select: none;
      font-weight: bold;
      background: #f7f7f7;
    }

    .tabs-accordion input[type="radio"] { 
   display: none;
 }

 .tabs-accordion .accordion-item {     
   border: 1px solid #ccc;
   margin-bottom: 0.5rem;
   border-radius: 4px;
   overflow: hidden;
 }

 .tabs-accordion label {               
   display: block;
   padding: 0.75rem;
    cursor: pointer;
   user-select: none;
   font-weight: bold;
   background: #f7f7f7;
 }

 .tabs-accordion .content {            
   display: none;
   padding: 1rem;
   border-top: 1px solid #ccc;
 }


/* Anzeige, wenn Radio gecheckt */
/* entfällt Details-Selektor */
#acc1:checked  ~ .item1 .content,
#acc2:checked  ~ .item2 .content,
#acc3:checked  ~ .item3 .content,
#acc4:checked  ~ .item4 .content,
#acc5:checked  ~ .item5 .content,
#acc6:checked  ~ .item6 .content,
#acc7:checked  ~ .item7 .content {
   display: block;
 }



 /* --- Aktives Accordion-Label stylen --- */
#acc1:checked  ~ .item1  label,
#acc2:checked  ~ .item2  label,
#acc3:checked  ~ .item3  label,
#acc4:checked  ~ .item4  label,
#acc5:checked  ~ .item5  label,
#acc6:checked  ~ .item6  label,
#acc7:checked  ~ .item7  label {
  color: #fff;
  background-color: #00427f;
}

.tabs-accordion { display: none; }



.popup.hidden { display: none; }



/* Wrapper für Icon + Tooltip */

.info-icon {
  position: relative;
  display: inline-block;
  margin-left: 0.3em;
  margin-top: 0.83em;
  cursor: help;
  color: #29a9e1;
  font-size: 0.9em;
}



/* das echte Icon übernimmt die Farbe vom Eltern-Span */
.info-icon i {
  color: inherit;
}


/* Tooltip-Box via ::after */

.info-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #00427f;
  color: #fff;
  padding: 1rem;
  border-radius: 15px;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
  box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
  -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
  -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
}



.info-icon::before {
  content: "";
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
}

.material-container {
    border: 1px solid #00427f;
}

hr {
     border: 1px dotted #00427f;
}

/* Tooltip einblenden */

.info-icon:hover::after,
.info-icon:hover::before {
  opacity: 1;
}



/* Wrapper für Icon + Tooltip LIGHT */

.info-icon-light {
  position: relative;
  display: inline-block;
  margin-left: 0.3em;
  margin-top: 0.83em;
  cursor: help;
  color: #fff;
  font-size: 0.9em;
}



.info-icon-light i {
  color: inherit;
}



/* Tooltip-Box via ::after */

.info-icon-light::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #ffffff;
  color: #00427f;
  padding: 1rem;
  border-radius: 15px;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
  box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
  -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
  -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
}


/* Tooltip einblenden */
.info-icon-light:hover::after,
.info-icon-light:hover::before {
  opacity: 1;
}


.hidden {
  display: none !important;
}




        /* Responsive Styles */

        @media (max-width: 768px) {


        /*    nav ul.desktop-menu {
                display: none;
            }

            .hamburger {
                display: inline-block;
                color: #fff;
            }

            #mobile-menu {
                display: none;
            }
            */

             .desktop-menu {
    display: none;       /* Desktop-Nav ausblenden */
  }
  .hamburger {
    display: block;      /* Hamburger einblenden */
  }


            .tabs .tab-labels {
        flex-wrap: wrap;
      }

      .tabs-desktop .tab-labels label {
        flex: 0 0 50%;
      }


      .container2 .one-third,

      .container2 .two-thirds {
        flex: 0 0 100%;
     /*   padding: 0.5rem;*/
      }



      .container2 .two-thirds {
      padding-left: 0;
    }



      .tabs-desktop { display: none; }
      .tabs-accordion { display: block; }

.popup-content label {
    color: #fff;
    display: inline-block;
    padding-top: 10px;
}

#loader-message {
    font-size: 0.6em;
    padding: 10px;
}

header h1 {
    margin-block-start: 0;
    margin-block-end: 0;
    text-align: left;
}

header p {
    margin-block-start: 0;
    text-align: left;
}

#header-logo {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-bottom: 0rem;
}

#header-title {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

     
    /*.responsive-two-column-grid {
        display: grid;
    }*/

        }

.map-container {
        margin-top: 1em;
        margin-bottom: 1em;
    }


/* flexbox-content */
    .flex-container,
    .flex-item {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .flex-container {
      display: flex;
      flex-wrap: wrap;           
      align-items: stretch;
      gap: 20px 10px;      
    }

    .flex-item {
      flex: 0 0 calc((100% - 10px) / 2);           
      /*padding: 1rem;*/
      display: flex;
      flex-direction: column;
    }

    .flex-item > div[id^="content-"] {
      flex: 1 1 auto;
    }
    
    /*
    .flex-item h2 {
        padding: 0;
    }*/

    #content-general-product-description {
        border: 1px solid #000;
        border-radius: 0;
        padding: 1rem;
        box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    }
    #h2-general-product-description {
        color: #000;
    }

    #content-technical-product-properties {
        border: 1px solid #000;
        border-radius: 0;
        padding: 1rem;
        box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    }
    #h2-technicalproperties {
        color: #000;
    }

    #content-dangerous-substances {
        border: 1px solid #000;
        border-radius: 0;
        padding: 1rem;
        box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    }
    #h2-dangeroussubstances {
        color: #000;
    }

    #content-safe-usage {
        border: 1px solid #000;
        border-radius: 0;
        padding: 1rem;
        box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    }
    #h2-safeusage {
        color: #000;
    }

    #content-application {
        border: 1px solid #000;
        border-radius: 0;
        padding: 1rem;
        box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    }
    #h2-application {
        color: #000;
    }

    #content-recycle-reuse {
        border: 1px solid #000;
        border-radius: 0;
        padding: 1rem;
        box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    }
    #h2-recycle {
        color: #000;
    }


    #content-eco-design {
        border: 1px solid #000;
        border-radius: 0;
        padding: 1rem;
        box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    }
    #h2-ecodesign {
        color: #000;
    }

    #content-additional-information {
        border: 1px solid #000;
        border-radius: 0;
        padding: 1rem;
        box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    }
    #h2-additional-information {
        color: #000;
    }

    #map {
        box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -webkit-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    -moz-box-shadow: 10px 10px 8px 0px rgba(192,196,200,0.3);
    }
    #h2-map {
        color: #000;
    }


    @media (max-width: 768px) {
      .flex-container {
        flex-direction: column;
        gap: 20px 0;
      }
      .flex-item {
        flex: 1 1 auto;          
        width: 100%;
      }
    }

/* flexbox-content END */

/* ==== scroll to top ==== */
    :root {
      --scroll-btn-bg: rgba(90, 102, 117, 0.8);
      --scroll-btn-icon: #ffffff;
      --scroll-btn-size: 50px;
      --scroll-btn-offset: 25px;
      --scroll-btn-transition: 0.3s;
      --scroll-threshold: 300;
    }

    /* Button-Grund-Styles */
    #scrollToTop {
      position: fixed;
      bottom: var(--scroll-btn-offset);
      right: var(--scroll-btn-offset);
      width: var(--scroll-btn-size);
      height: var(--scroll-btn-size);
      background-color: var(--scroll-btn-bg);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--scroll-btn-transition), visibility var(--scroll-btn-transition);
      z-index: 1000;
    }

    #scrollToTop:hover {
      background-color: rgba(160, 166, 170, 0.8);
    }

    /* Wenn die Klasse .show aktiv ist, wird der Button angezeigt */
    #scrollToTop.show {
      opacity: 1;
      visibility: visible;
    }

    /* Pfeil-Icon per SVG */
    #scrollToTop svg {
      width: 60%;
      height: 60%;
      fill: var(--scroll-btn-icon);
    }

    .ext-video-iframe {
  width: 420px;
  height: 315px;
  border: none;
}
/*.ext-video-iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: none;
}*/

@media (max-width: 767px) {
  .ext-video-iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

html, body {
  overflow-x: hidden;
}