#pdf-container {
  width: auto; /* Ancho del contenedor */
  height: 600px; /* Altura fija del contenedor */
  overflow-y: scroll;
}

#lista-de-navegacion {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 10px;
  margin-top: 65px;
}

#lista-de-navegacion > div {
  padding: 10px;
  margin: 5px;
  background-color: #007aff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.lista-de-navegacion > div:hover {
  background-color: #45a049;
}

/* iOS Cordova Tweak */
.device-cordova.device-ios {
  height: 100vh;
}

/* Your app custom styles here */
html, body {
  width: 100vw;
  height: 100vh;
}

/* app_styles.css */
.page-content * {
  box-sizing: border-box;
}

.page-content .container {
  width: auto;
  max-width: 900px;
  padding: 32px 64px;
  margin: auto;
}

.page-content .social {
  /*las imágenes usadas tienen width de 48px*/
  width: 48px;
  position: fixed;
  top: 50px;
  right: 0;
}


/* Extra centrado vertical*/
.page-content .social {
  /*border:1px solid #000;*/
  top: 50%;
  height: 205px;
  /*para poner height 192 deberíamos haber indicado en el reset de estilos font-size:0;*/
  margin-top: -100px;
}

.linea {
  margin: 1rem;
}


.navbar-bg {
    background-size: cover;
    background-position: 0% 10%;
    background-image: url('../img/home-screen.png');
}

.modulo-item {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Finger Paint";
}

.modulo-item a {
  color: white;
  text-decoration: none; /* Esto removerá el subrayado. Si aún quieres que esté subrayado, simplemente omite esta línea */
}

.modulo-item:hover {
  color: grey; /* Fondo gris al pasar el cursor por encima */
}

.modulo-item a:hover {
  color: grey; /* Esto garantiza que el enlace permanezca blanco incluso al pasar el cursor por encima */
}

#my-popup {
  background-image: url('../img/fondomodulo.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  right: 0;
  margin: 0;
}

#my-notice-popup {
  display: none;
  z-index: 11001;
  position: absolute;
  top: 50%; /* Ubica el borde superior en el centro vertical */
  left: 50%; /* Ubica el borde izquierdo en el centro horizontal */
  transform: translate(-50%, -50%);
  height: fit-content;
  width: 250px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border: 1px solid gray;
  border-radius: 6px;
  padding: 20px;
  background: white;
  margin: 10px;
}

#delete-message{
  display: none;
}

#confirm-message {
  display: none;
  border: 1px solid lightblue;
  background: deepskyblue;
  color: white;
  border-radius: 6px;
  font-size: 20px;
}

#cancel-message {
  display: none;
  border: 1px solid peachpuff;
  background: rosybrown;
  color: white;
  border-radius: 6px;
  font-size: 20px;
}

#my-auxiliary-popup {
  background-image: url('../img/fondomodulo.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#my-popup-blank, #my-auxiliary-popup, #my-popup-video {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  right: 0;
  margin: 0;
}

h1 {
  font-family: "Finger Paint";
  color: white;
  justify-content: center;
  padding-left: 10px;
  margin-bottom: 0;
  font-weight: 100;
}

h2 {
  font-family: "Finger Paint";
}

.row {
display: flex;
position: relative;
}

.gif {
  width: 120px;
  position: absolute;
  right: 15px;
  top: 0;
  
}

.sm-gif {
  width: 70px;
  position: absolute;
  right: 15px;
  top: 0;
  
}

.subtitle {
  font-family: "Finger Paint";
  color: black;
  font-size: 16px;
  padding: 10px;
  z-index: 9999;
}

.subheadline {
  max-width: 250px !important;
  font-size: 20px;
  margin-top: 0;
  margin-left: 7px;
  font-family: "Finger Paint";
  color: black;
  justify-content: center;
  padding-left: 10px;
  font-weight: 100;
}

.close {
  margin-top: 10px;
  margin-bottom: 10px;
  background: none;
  border : 0px;
  text-align: left;
}

.close img {
  width: 27px;
}

iframe {
  border: 0px;
}

p {
  font-family: "Finger Paint";
  font-size: 16px;
  padding-left: 10px;
  margin-top: 0;
}

.imgcard {
 width: 100px;
}

.infocard {
 padding: 0px 10px;
 background-color: #eef1f8;
 border-radius: 10px;
 margin: 5px;
 align-items: center;
 
}

.body {
  width: 96vw;
}

.bg-blue {
  background-color: #7796cc;
}

.numbercard {
  margin: 20px;
  padding: 5px 15px;
  border-radius: 15px;
  border: 5px;
  border-color: #7796cc;
  border-style: solid;
  color: #7796cc;
  position: relative;
}

.numbercard p {
  color: #7796cc;
}

.numbertitle {
  background-color: white;
  padding: 2px;
  position: absolute;
  left: -10px;/* Centra horizontalmente el elemento en el contenedor */
  top: 50%; /* Coloca el elemento en el centro vertical del contenedor */
  transform: translate(-50%, -50%);
  margin: 0px;
  font-size: 50px;
  color: #7796cc;
  height: fit-content;
}


video {
  width: 100vw;
  height: 300px;
  margin-top: 50%;
}

.videoContainer {
background-color: black;
display: flex;
margin: 0 auto;
height: 100vh;
width: 100vw;
align-items: center;
justify-content: center;
}

.headline {
 max-width: 250px !important;
  font-size: 25px;
  margin-top: 0;
  margin-left: 7px;
  font-family: "Finger Paint";
  color: black;
  justify-content: center;
  padding-left: 10px;
  font-weight: 100;
}

.custom-headline {
 
  margin-left: 15px;
}

.m-rl {
  margin-left: 5%;
  margin-right: 10%;
}

.cardcontainer {
  margin-top: 48px;
}

.d-none {
  display: none;
}