/* Pop-up achtergrond */
.vdw_popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(211, 211, 211, 0.8); /* Lichtgrijze achtergrond */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Zorgt dat het bovenop alle content staat */
  visibility: hidden; /* Verborgen standaard */
  opacity: 0; /* Verborgen standaard */
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Pop-up venster */
.vdw_popup {
  background-color: #e6e6e6;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 90%;
  font-family: Arial, sans-serif;
}

/* Stijl voor de iframe */
.vdw_popup iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
}

/* Animatie wanneer de pop-up verschijnt */
.vdw_popup_overlay.vdw_show {
  visibility: visible;
  opacity: 1;
}
