<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modalDialog {
  position: Fixed;
  font-family: Verdana, Sans-Serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  
  z-index: 99999;
  opacity: 0;
  transition: opacity 400ms ease-in;
  pointer-events: None;
}
.modalDialog:target {
  opacity: 1;
  pointer-events: Auto;
}
.modalDialog &gt; div {
  width: 900px;
  max-width: 90%;
  position: relative;
  margin: 10% Auto;
  padding: 20px 10px 20px 10px;
  border-radius: 30px;
  background-color: TRANSPARENT;
  cursor: Default;
}

.close {
   background-color: TRANSPARENT;
    opacity: 1.0;
  color: #ffffff;
  line-height: 30px;
  width: 30px;
  position: Absolute;
  right: -10px;
  text-align: Center;
  top: -1px;
  text-decoration: None;
  font-size: 14px;
  font-weight: Bold;
  border-radius: 12px;
  box-shadow: 5px 5px 8px #000000;
}
.close:hover {
  background-color: #00D9FF;
}
     .nav-item {
            list-style: none;
        }
        .nav-link {
            text-decoration: none;
            color: white;
        }
        .nav-link div {
            margin-bottom: 5px; /* Espacio entre lÃ­neas */
        }
        .whatsapp-icon {
            margin-right: 8px;
        }</pre></body></html>