* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background:  #F6F7F8;
    font-family: 'Open Sans', sans-serif;
    zoom: 1.10;
  }
  

  html{
    scroll-behavior: smooth;
  }
  
  .wrap {
    max-width: 1100px;
    width: 90%;
    margin: auto;
  }
  
  img {
    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
  }
  
  
  .category-wrapper {
    display: flex;
    margin-top: 0px; /* Adjust this value as needed to move the category bar higher */
    
  }
  
  .category_list {
    display: flex;
    flex-direction: column;
    width: 21%;
    margin-top: -120px; /* Adjust this value to add some space between the title and the categories */
  
  }
  
  .category_list .category_item {
    display: block;
    width: 90%;
    padding: 15px 0;
    margin-bottom: 10px;
    background: #007A8D;
    text-align: center;
    color: #fff;
    border-radius: 8px;
    user-select: none;
  }
  
  
  
  .category_list .ct_item-active {
    background: #00546b;
  
  }
  
  .product-item .tooltip-wrapper .tooltip {
    opacity: 0;
    display: none;
    z-index: 9999; /* Set a higher z-index to ensure tooltips appear above other elements */
  
  }
  
  
  .products-list {
    width: 82%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .products-list .product-item {
    width: 22%;
    margin-left: 3%;
    margin-bottom: 25px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-start;
    border-radius: 8px;
    background-color: #fff;
    position: relative;
    user-select: none;
  }
  
  .products-list .product-item img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }
  
  .products-list .product-item a {
    display: block;
    width: 100%;
    padding: 8px 0;
    background: #2D3E50;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 0 0 8px 8px;
  }
  
  /* Add this CSS class to create a scale animation */
  .product-item.scale-animation {
    animation: scaleAnimation 0.4s;
    transform-origin: center;
  }
  
  /* Define the scale animation */
  @keyframes scaleAnimation {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .products-list .product-item a:hover {
    background: #007A8D;
  }
  
  .search-container {
    position: relative;
  }
  
  .search-input {
    padding-right: 25px; /* Add some space to the right for the clear button */
  }
  
  
  
  .clear-icon {
    position: absolute;
    top: 22.5%;
    right: 415px;
    transform: translateY(-50%);
    cursor: pointer;
    display: none; /* Hide the clear button initially */
  }
  
  .tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    display: none;
    border-radius: 8px 8px 8px 8px;
  
    z-index: 999;
  }
  .disable-pointer-events {
    pointer-events: none;
  }
  
  .box {
    width: 40%;
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
    padding: 35px;
    border: 2px solid #fff;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center;
  }

  .button {
    font-size: 1em;
    padding: 10px;
    color: #fff;
    border: 2px solid #06D85F;
    border-radius: 20px/50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
  }

  .button:hover {
    background: #06D85F;
  }

  .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
  }

  .overlay:target {
    visibility: visible;
    opacity: 1;
  }



  .popup-container {
    position: relative;
   top: 50px;
    z-index: 99999;
    text-align: center;
  }

  .popup {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #63f5ff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    text-align: justify;
    font-size: 10px;

  }
  

  .close-btn {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    background-color: #63f5ff;
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
  }
 
  .product-item:hover .tooltip {
    display: block;
  }
  
  
  .textanfang{
    text-align: justify;
    color: #000e8d;
    font-size: 12px;
    max-width: 500px;
    margin: 0 auto;
  }

  
  .tooltip h2 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .tooltip p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .tooltip-link {
    display: inline-block;
    background-color: #2D3E50;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 12px;
  }
  
  .text{
    text-align: center;
    color: #45A660;
  }
  .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .container input[type="text"],
  .container input[type="search"],
  .container select {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #F6F7F8;
    border: none;
    border-bottom: 2px solid #007A8D;
    color: #333;
    transition: border-bottom-color 0.3s ease;
  
  }
  .container input[type="text"]:focus,
  .container input[type="search"]:focus,
  .container select:focus {
    outline: none;
    border-bottom-color: #00546b;
  }
  
  
  .filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    
  }
  
  .filters select {
    flex: 1 0 150px;
    margin: 0 5px;
    background-color: #f7f7f7f4;
  }
  
  #button {
    display: inline-block;
    background-color: #007A8D;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    left: 30px; /* Change right to left */
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer; /* Add cursor pointer */
  }
  
/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(font2/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}



  #button::after {
    font-family: 'Material Icons';
    content: "\e5ce";
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
  }
  
  #button:hover {
    background-color: #00546b;
  }
  
  #button:active {
    background-color: #00546b;
  }
  
  #button.show {
    opacity: 1;
    visibility: visible;
  }

  #button2{
    display: inline-block;
    background-color: #007A8D;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    left: 30px; /* Change right to left */
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    z-index: 1000;
    cursor: pointer; /* Add cursor pointer */
  }

  #button2::after {
    font-family: 'Material Icons';
    content: "\e5cb";
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
  }
 



  
  @font-face {
    font-family: 'Open Sans';
    src: url('Fonts-OpenSans/OpenSans-Light.ttf') format('truetype');
         font-style: normal;
         font-weight: 500;
    /* Add more formats if needed */
  }
  
  h1 {
    text-align: center;
    user-select: none;
    
  }
  
  input[type="text"],
  .container input[type="search"],
  select {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #F6F7F8;
    border: none;
    border-bottom: 2px solid #007A8D;
    color: #333;
    transition: border-bottom-color 0.3s ease;
  
  }
  
  button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
  }
  
  button:hover {
    background-color: #45A660;
  }
  
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  
  li {
    margin-bottom: 5px;
  }
  
  link[rel="shortcut icon"] {
    border-radius: 50%;
  }
  
  .impressum{
    display: block;
    width: 25%;
    padding: 10px 0;
    margin-bottom: 10px;
    background: #007A8D;
    text-align: center;
    color: #fff;
    border-radius: 8px;
    user-select: none;
    text-align: center;
    position: relative;
    left: 40%;
  }

  .container2 {
    max-width: 1000px; /* Set the maximum width of the container */
    margin: 0 auto; /* Center the container horizontally */
    background-color: #F6F7F8; /* Just for visibility, you can remove this */
    padding: 20px; /* Add padding to create spacing around the text */
  }

  /* Style for the text block */


/* Style for the heading */
.text-block h2 {
  font-size: 40px; /* Adjust the heading font size as needed */
  margin-bottom: 10px; /* Add spacing below the heading */
  color: 333;
  text-align: center;
}
.text-block ul {
  font-size: 20px; /* Adjust the heading font size as needed */
  margin-bottom: 10px; /* Add spacing below the heading */
  color: 333;
  text-align: justify;
}
.text-block li {
  font-size: 20px; /* Adjust the heading font size as needed */
  margin-bottom: 10px; /* Add spacing below the heading */
  color: 333;
  text-align: justify;
}

.text-block a {
  font-size: 20px; /* Adjust the heading font size as needed */
  margin-bottom: 10px; /* Add spacing below the heading */
  color: 333;
  text-align: justify;
}

.index-link {
  color: white;
}

.text-block h3 {
  font-size: 27px; /* Adjust the heading font size as needed */
  margin-bottom: 10px; /* Add spacing below the heading */
  color: 333;
  text-align: center;
}
.text-block h4 {
  font-size: 27px; /* Adjust the heading font size as needed */
  margin-bottom: 10px; /* Add spacing below the heading */
  color: 333;
  text-align: center;
}
.text-block br {
  font-size: 20px; /* Adjust the heading font size as needed */
  margin-bottom: 10px; /* Add spacing below the heading */
  color: 333;
  text-align: justify;
}

/* Style for paragraphs */
.text-block p {
  font-size: 20px; /* Adjust the paragraph font size as needed */
  line-height: 1.5; /* Adjust the line height for readability */
  color: 333;
  text-align: justify;


}

.text-block i {
  font-size: 20px; /* Adjust the paragraph font size as needed */
  line-height: 1.5; /* Adjust the line height for readability */
  color: 333;
  text-align: justify;


}


  a:link {
    color: white;
  }
  
  /* visited link */
  a:visited {
    color: white;
  }
  
  /* mouse over link */
  a:hover {
    color: white;
  }
  
  /* selected link */
  a:active {
    color: white;
  }
  
  @media screen and (min-width: 992px) {
    /* Update .wrap width and margin */
    .wrap {
      max-width: 1100px;
      width: 90%;
      margin: auto;
    }
  
  img {
    max-width: 100%;
    height: auto;
    width: 550px;
  }
  
  
    /* Adjust category_list width */
    .category_list {
      width: 25%;
      margin-top: 0; /* Adjust as needed */
    }
  
    /* Adjust .products-list width and margins */
    .products-list .product-item {
      width: 23%;
      margin-left: 2%;
    }
  
    /* ... (other style adjustments for larger screens) */
  }


    @media screen and (max-width: 700px){
      .box{
        width: 70%;
      }
      .popup{
        width: 70%;
      }
    }
  
  /* Medium screens */
  @media screen and (max-width: 991px) {
    /* Adjust .wrap width and margin */
    .wrap {
      width: 95%;
      margin: auto;
    }
    
    img {
      max-width: 100%;
      height: auto;
      width: 550px;
    }
    
  
    /* Adjust .category_list width and margin-top */
    .category_list {
      width: 100%;
      margin-top: 20px; /* Adjust as needed */
    }
  
    /* Adjust .products-list width and margins */
    .products-list .product-item {
      width: 48%;
      margin-left: 2%;
    }
  
    /* ... (other style adjustments for medium screens) */
  }
  



  @media screen and (max-width: 700px){
    .box{
      width: 70%;
    }
    .popup{
      width: 70%;
    }
  }

  /* Small screens (mobile) */
  @media screen and (max-width: 767px) {
    /* Adjust .wrap width and margin */
    body {
      background:  #F6F7F8;
      font-family: 'Open Sans', sans-serif;
      zoom: 1.0;
    }
  
    .wrap > h1 img {
      max-width: 80%; /* Adjust as needed for small screens */
      height: auto;
      width: auto\9; /* ie8 */
  
    }
    
  .clear-icon {
    position: absolute;
    top: 18.5%;
    right: 22px;
    transform: translateY(-50%);
    cursor: pointer;
    display: none; /* Hide the clear button initially */
  }
  
    /* Adjust .category_list width and margin-top */
    .category_list {
      width: 100%;
      margin-top: 10px; /* Adjust as needed */
    }
  
    /* Adjust .products-list width and margins */
    .products-list .product-item {
      width: 100%;
      margin-left: 0;
    }

    .textanfang{
      text-align: justify;
      color: #000e8d;
      font-size: 12px;
      max-width: 380px;
      margin: 0 auto;
    }
  
  
    /* ... (other style adjustments for small screens) */
  }