@font-face {
  font-family: 'Kaushan Script';
  src: url("KaushanScript-Regular.ttf") format('truetype');
}

body {
  color: #716d6d; /* Dunkelgrau – wirkt eleganter als tiefes Schwarz */
}

/* --- Header --- */
#firstrow {
  font-size: 1.25em;
  margin-bottom: 20px;
  padding: 10px;
  background-image: url("headlineWood.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; 
  background-color: rgb(101, 101, 101);
  background-blend-mode: multiply;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

#firstrow p {
  color: #ffffff;
  margin: 5px 15px;
  font-size: 1em;
  text-align: center;
}

/* Für mobile: sanfte Rotation */
@media (max-width: 1100px) {
  .rotating-text {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
      position: absolute;
  }

  .rotating-text.active {
      opacity: 1;
      visibility: visible;
      transition: opacity 1s ease-in, visibility 0s linear 0s;
      position: static;
  }

  #firstrow {
      flex-direction: column;
      position: relative;
      min-height: 2.5em;
  }
}
/* --- Header / Responsive --- */
@media (max-width: 1100px) {
    #firstrow {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #firstrow p {
        margin: 5px 0;
    }
}


/* Wrapper hält Logo & Navigation nebeneinander */
#wrapper {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px 5%;
}

/* Logo skalierbar */
.Logo {
  max-width: 150px;
  height: auto;
}

/* Navigationsteil */
.nav-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  overflow: hidden;
}

/* Hauptmenü */
#dropdown {
  display: flex;
  list-style: none;
  gap: 16px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.Menu {
  position: relative;
}

.Menu > a {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 35px;
  padding: 8px;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: border-color 0.3s ease-in-out;
}

.Menu > a:hover {
  border-color: black;
}

/* Dropdown-Menüs */
.Menu ul {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  margin-top: 10px;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
}

.Menu:hover > ul {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, visibility 0s 0s;
}

.Menu ul li a {
  display: block;
  font-size: 1.1em;
  padding: 8px 16px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  background-color: #fff;
}

.Menu ul li a:hover {
  background-color: #eee;
}
/* --- Burger Button --- */
#burger {
    display: none;
    font-size: 2em;
    cursor: pointer;
    padding: 10px;
}

/* --- Menü / Responsive / Burger Menü --- */
/* Vollbild (ab 1025px) */
@media (min-width: 1025px) {
  #wrapper {
      flex-wrap: nowrap;
  }

  .nav-container {
      justify-content: flex-end;
  }

  #dropdown {
      flex-wrap: nowrap;
  }

  #burger {
      display: none;
  }
}


/* Zwischen Desktop & Mobile (769px bis 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  #wrapper {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 20px;
  }

  .Logo {
      max-width: 120px;
  }

  #dropdown {
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 12px;
  }

  .Menu > a {
      font-size: 1em;
      padding: 6px;
  }

  .Menu {
      flex: 0 1 auto;
  }

  #burger {
      display: none;
  }
}
@media (max-width: 768px) {
    #burger {
        display: block;
        z-index: 1000;
        align-self: flex-end; /* Burger-Menü bleibt rechts */
        margin-right: 20px;
        margin-top: -120px; /* Optional: nach oben ziehen */
    }
    #dropdown {
        flex-direction: column;
        align-items: flex-start;
        display: none; /* default hidden */
        width: 100%;
        background-color: white;
        position: absolute;
        margin-top: 60px;
        left: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }
    #dropdown.show {
        display: flex;
    }
    .Menu {
        width: 100%;
    }
    .Menu ul {
        position: static;
        box-shadow: none;
        display: none;
    }
    .Menu.open ul {
        display: block;
    }
    .Menu > a {
        width: 100%;
        display: block;
    }
    #wrapper {
      flex-direction: column;
      align-items: center; /* zentriert Logo horizontal */
      text-align: center;
    }
  .Logo {
      margin: 0 auto;
      display: block;
    }

}






/* --- Footer --- */

.footer {
    background-image: url("high-angle-woman-measuring-with-ruler.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
    background-color: rgb(101, 101, 101);
    background-blend-mode: multiply;
    text-align: center;
    padding: 40px 20px;
    color: #fff;
  }
  
.top-links {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #f2c0a8;
  border-radius: 30px;
  padding: 15px 20px;
  color: #f2c0a8;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s;
  width: 200px;
  justify-content: center;
}

.image-wrapper {
  position: relative;
}

.ausblenden {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.hover-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-button:hover .ausblenden {
  opacity: 0;
}

.footer-button:hover .hover-img {
  opacity: 1;
}

.footer-button:hover {
  background-color: #f2c0a8;
  color: #333;
}

/* --- Footer social media--- */
.footer-container {
  display: flex;
  justify-content: center; /* oder space-between / space-around je nach Wunsch */
  align-items: center;
  flex-wrap: wrap; /* Optional: Damit es bei kleinen Bildschirmen nicht überläuft */
  gap: 225px; /* Abstand zwischen den beiden Blöcken */
  padding: 20px;
  margin-top: -40px;
}
  .social-media {
    margin: 10px 0;
  }
  
  .social-media a {
    color: white;
    margin: 0 10px;
    font-size: 28px;
    text-decoration: none;
    transition: transform 0.2s;
  }
  
  .social-media a:hover {
    transform: scale(1.2);
  }
  
  .bottom-links {
    margin: 20px 0;
  }
  
  .bottom-links a {
    background: #ccc;
    color: #333;
    padding: 10px 20px;
    margin: 10px 10px;
    display: inline-block;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
    width: 150px;
  }
  
  .bottom-links a:hover {
    background: #8e8d8d;
  }

  .footer p{
    margin-top: -20px;
    margin-right: 225px;
    text-align: right;
  }
  @media (max-width: 1200px) {
    .footer-container {
      gap: 20px; /* Weniger Abstand auf kleinen Bildschirmen */
    }
  
    .bottom-links {
      margin-left: 0; /* Zur Sicherheit, falls du das auch drin hattest */
      text-align: center; /* Optional: zentriert die Links hübsch bei kleiner Breite */
    }
  
    .social-media {
      justify-content: center; /* Falls du möchtest, dass auch die Icons schön mittig bleiben */
    }
    .top-links {
      gap: 40px;
    }

    .custom-text p {
    padding: 0px 20px;
  }
    .custom-image {
    padding: 0px 20px;
  }
  }






/* --- Index Inhalt --- */

  .begruesung {
    text-align: center;
    padding: 40px 100px;
  }
  
  .begruesung h1 {
    font-size: 2.5em;
    color: #444;
    font-family: 'Kaushan Script';
  }
  .begruesung p {
    margin: 0 60px;
  }
  .bestseller {
    text-align: center;
  }
  
  .bestseller h2 {
    font-family: 'Kaushan Script';
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  /* Das Grid */
.products {
  display: grid;
  grid-template-columns: repeat(5, 240px); /* 5 schmale Spalten */
  justify-content: center;  
  margin: 0 auto;        /* Zentriert es horizontal in der Seite */
  padding: 10px 20px;    /* Mehr Abstand oben/unten & seitlich */
}
.producte {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  padding: 0;
  padding: 0 200px; /* 👈 Abstand links & rechts */
}

@media (min-width: 1400px) {
  .producte {
    grid-template-columns: repeat(5, 1fr);
  }
}
/* Produktboxen */
.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px; /* Einheitliche Höhe */
  padding: 13px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #ddd;
  transition: box-shadow 0.3s ease;
  background-color: #fff;
}

.product:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product a{
 text-decoration: none;
 font-size: 1em;
}

/* Bild */
.product img {
  transition: transform 0.4s ease;
  max-width: 100%;
  height: auto;
}

.product:hover img {
  transform: scale(1.05);
}

/* Beschreibung */
.product p {
  flex-grow: 1;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.3em;
}

/* Button */
.product-btn {
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 10px 18px;
  background-color: #f7a094;
  color: #000000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  pointer-events: none;
}

.product:hover .product-btn {
  opacity: 1;
  pointer-events: auto;
}

.product-btn:hover {
  background-color: #ee8a7d;
}
/* 📱 Responsive Anpassungen */

@media (max-width: 1280px) {
  .producte {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default: 2 Spalten */
  gap: 0;
  padding: 0;
}
  .product:hover .product-btn {
    opacity: 1;
    pointer-events: auto;
  }

  .product-btn:hover {
    background-color: #f7a094; /* 👈 gleiche Farbe wie default → kein Hover-Effekt */
  }

@media (min-width: 768px) {
  .producte {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .producte {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1400px) {
  .producte {
    grid-template-columns: repeat(5, 1fr);
  }
}
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
  .product {
    min-height: unset; /* oder z. B. 300px */
  }
  .footer p{
    text-align: center;
    margin: 0;
  }
  .product-btn {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .producte {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default: 2 Spalten */
  gap: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .producte {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .producte {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1400px) {
  .producte {
    grid-template-columns: repeat(5, 1fr);
  }
}
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .product p {
    margin-bottom: 8px;
  }
  .product {
    min-height: unset; /* oder z. B. 300px */
  }
  .footer p{
    text-align: center;
    margin: 0;
  }
}

/* --- Foto links schrift rechts --- */

  .custom-order {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 60px auto;
    max-width: 1100px;
    gap: 40px;
  }
  
  .custom-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .custom-text {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .custom-text h2 {
    font-size: 2em;
    font-family: 'Kaushan Script';
    margin-bottom: 15px;
  }
  
  .custom-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .button {
    font-size: large;
    display: inline-block;
    margin-top: 15px;
    padding: 15px 20px;
    border: 2px solid #ff4c6b;
    color: #ff4c6b;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
  }
  
  .button:hover {
    background-color: #ff4c6b;
    color: #fff;
  }
  
  /* --- Foto rechts schrift links --- */
  .custom-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 60px auto;
    max-width: 1100px;
    gap: 40px;
  }
  
  .custom-section.reverse {
    flex-direction: row-reverse;
  }
  
 /* --- Großer button unter gallery --- */
  .big-button-wrapper {
    width: 100%;
    margin: 40px 0 15px;
  }

  .big-button {
    display: block;
    width: 100%;
    max-width: 77%; /* Optional: Begrenzung, damit es nicht zu breit wird auf riesigen Screens */
    margin: 0 auto;
    padding: 15px 40px;
    background-color: #f7a094;
    color: #444;
    text-decoration: none;
    font-size: 1.5em;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .big-button:hover {
    background-color: #ee8a7d;
    color: #444;
  }
  .indextext {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    padding-bottom: 20px;
  }
  
  .indextext p {
    max-width: 70%;
  }

  @media (max-width: 768px) {
  .custom-text p {
    padding: 0px 20px;
  }
  .indextext p {
    max-width: 90%;
  }
  .begruesung p {
    margin: 0px 0px 0px 20px;
    max-width: 90%;
  }
  .begruesung {
    padding: 20px 0px 0px 0px;
  }
  .begruesung h1{
    padding: 0px 60px;
  }
  }
  /* --- Zwischenstriche --- */
  .divider {
    border: none;
    border-top: 2px solid #f2c0a8;
    margin: 30px auto;
    width: 70%;
  }
  .dividers {
    border: none;
    border-top: 2px solid #cbc7c7;
    margin: 30px auto;
    width: 80%;
  }  


   /* --- PreisFarbe--- */
  .ab {
  color: #8e8d8d;
  font-size: 0.65em;
  display: inline-block;
  margin-right: 0.2em;
  line-height: 1.4;
}
   .preis {
    color: #8e8d8d;
    font-weight: bold ;
    font-size: 1em;
    font-family: 'Kaushan Script', cursive;
   }
   .versand{
    color: #ee8a7d;
    font-size: 0.65em;
    cursor: pointer;
   }


     /* ---Css Produktseiten --- */

     .container {
      display: flex;
      gap: 2rem;
      background: white;
      padding: 2rem;
      max-width: 90%;
      padding: 30px 40px;
    }
    .image-section {
      position: relative;
      flex: 1;
    }
    .main-image {
      width: 100%;
      max-height: 400px;
      object-fit: contain;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      background: rgba(255, 255, 255, 0.7);
      border: none;
      cursor: pointer;
      border-radius: 1.5em;
      height: 1.5em;
      width: 1.5em;
    }
    .arrow:hover {
      background: #ff9966;
      color: white;
    }
    .arrow.left {
      left: 10px;
    }
    .arrow.right {
      right: 10px;
    }
 .thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}
    .thumbnails img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border: 2px solid transparent;
      cursor: pointer;
    }
    .thumbnails img.active {
      border-color: #ff9966;
    }
    .details-section {
      flex: 1;
    }
    .details-section h2 {
      font-family: 'Kaushan Script';
    }
    .form-group {
      margin-bottom: 1rem;
    }
    input[type="text"] {
      width: 100%;
      padding: 0.5rem;
      font-size: 1rem;
      margin-top: 0.3rem;
    }
    .kleinerbutton {
      background-color: #ff9966;
      color: white;
      padding: 0.8rem 1.5rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
    }
    .anfragebutton{
      background-color: #ff9966;
      color: white;
      padding: 0.8rem 1.5rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      margin-top: 10px;
    }
    .infotext {
      margin-top: 1.5rem;
      font-size: 1rem;
      color: #555;
    }
    .infotext b {
      display: block;
      margin-top: 1rem;
    }
    .produkttext {
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      box-sizing: border-box;
      padding-bottom: 20px;
    }
    
    .produkttext p {
      max-width: 70%;
      font-size: 2em;
      font-family: 'Kaushan Script';
      color: #f45f87;
    }

    .aehnlicheprodukte {
      text-align: center;
      margin-bottom: 40px;
    }
    .aehnlicheprodukte h2 {
      font-family: 'Kaushan Script';
      font-size: 2em;
      margin-bottom: 20px;
    }

    #bestellformular{
      display: none; 
      margin-top: 1rem;
    }
     #bestellformular1{
      margin-top: 1rem;
          max-width: 1000px;
    margin: 0 auto;
    padding: 0 150px;
    }



  @media (max-width: 768px) {
    #bestellformular1 {
      padding: 0 30px;
    }
    .banner img{
  margin-top:30px;
}
    .footer-button {
  font-size: 1em;
}
  }

  @media (max-width: 480px) {
    #bestellformular1 {
      padding: 0 15px;
    }
    .footer-button {
  font-size: 1em;
}

  }
    .grosses-textfeld {
      width: 100%;
      height: auto;
      min-height: 100px;
      resize: none;
      padding: 0.5rem;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}



.grafikversand {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fafafa;
  color: #444;
}

.grafikversand label {
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1rem;
  color: #444;
}

.grafikversand p {
  margin: 0 0 1rem 0;
  color: #444;
}

.grafik-optionen {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.grafik-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grafik-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.grafik-button img,
.grafik-button svg {
  height: 24px;
  width: 24px;
  margin-right: 0.5rem;
}

.grafik-button span {
  color: #444;
  font-weight: 500;
}

.grafikversand small {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}
    @media (max-width: 768px) {
      .arrow {
        font-size: 1.2rem;
      }
      .produkttext p {
        max-width: 90%;
        font-size: 1.5em;
      }
      .container {
        flex-direction: column;
      }
    }

    .success-message {
      max-width: 600px;
      margin: 2rem auto;
      padding: 1.5rem;
      background-color: #e6ffed;
      border: 1px solid #b3f0c3;
      border-radius: 6px;
      font-family: sans-serif;
      color: #0a662a;
      text-align: center;
    }
    .success-message p {
      margin: 0.5rem 0;
      font-size: 1.1rem;
    }
    .success-message a {
      display: inline-block;
      margin-top: 0.5rem;
      font-weight: bold;
      color: #0a662a;
      text-decoration: none;
    }
    .success-message a:hover {
      text-decoration: underline;
    }


/* ---Css Themenseite --- */


.banner {
  position: relative;
  overflow: hidden;
  height: 120px;
  max-width: 1300px;
  margin: 0 auto; /* zentriert die Box auf großen Bildschirmen */
  width: 100%;    /* auf kleineren Bildschirmen responsiv */
}

.banner img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  height: auto;
}
    
    .themen-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px 20px;
      gap: 30px;
    }
    
    .themen-item {
      text-align: center;
      max-width: 350px;
    }
    
    .themen-item img {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .themen-item p {
      color: #555;
      margin-top: 10px;
      font-size: 1.3em;
      font-family: 'Kaushan Script';
    }

/* ---Impressum --- */


    .section {
      max-width: 1000px;
      margin: auto;
      padding: 15px 20px;
      color: #555;
    }

    .section h2{
      font-family: 'Kaushan Script';
      margin-top: 20px;
       margin-bottom: 10px;
    }
    .section p {
      margin: 4px 0 10px 0; /* oben, rechts, unten, links */
    }
    .section a{
      text-decoration: none;
      color: #ff9966;
    }

    .section a {
  word-break: break-word;
  overflow-wrap: anywhere;
}



    /* ---Versandbedingungen --- */


    .versand-section {
  max-width: 700px;
  margin: auto;
}

.versand-title {
  font-family: 'Kaushan Script';
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

.versand-tabelle {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.versand-tabelle thead th {
  background-color: #f8a26a;
  color: white;
  text-align: left;
  padding: 12px;
  font-weight: bold;
}

.versand-tabelle tbody td {
  padding: 12px;
}

.versand-tabelle tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.product {
  overflow: hidden;
  max-width: 100%;
}

.product img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (hover: none) and (pointer: coarse) {
  .product-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}


