/******* Do not edit this file *******
Code Snippets Manager
Saved: Aug 29 2025 | 06:52:39 */
.lightbox {
  display: none;
  /* oculto por defecto */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://test.gesditel.es/wp-content/uploads/2025/08/gesditel-bg1.webp");
  background-repeat: repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  /* Se necesita display:flex solo cuando se abre */
}
.lightbox-content {
  background: rgba(128, 128, 128, 0.5);
  padding: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  border: 1px solid #ffffff;
  border-radius: 19px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.close-lightbox {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
