@font-face {
  font-family: 'DSEG7';
  src: 
       url('/static/font/DSEG7Classic-Regular.woff2') format('woff2'),
       url('/static/font/DSEG7Classic-Regular.ttf') format('truetype');
}  




@font-face {
  font-family: 'Montserrat';
  src: 
       url('/static/css/Montserrat.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}  
@font-face {
  font-family: 'Roboto';
  src: 
       url('/static/css/Roboto-Thin.ttf'); 
} 

@font-face {
  font-family: 'Helvetica';
  src: 
       url('/static/font/Helvetica.ttf'); 
} 

@font-face {
  font-family: 'Roboto_regular';
  src: 
       url('/static/css/Roboto-Regular.ttf'); 
}  
@font-face {
  font-family: 'helvetica_medium';
  src: 
       url('/static/css/Helvetica CE Medium.otf'); 
}

@font-face {
  font-family: 'helvetica_bold_italica';
  src: 
       url('/static/css/Helvetica Bold Italic.ttf'); 
} 
@font-face {
  font-family: 'helvetica_light';
  src: 
       url('/static/css/Helvetica Light Condensed.otf'); 
} 
@font-face {
  font-family: 'helvetica_roman';
  src: 
       url('/static/css/Helvetica Roman.ttf'); 
} 
@font-face {
  font-family: 'helvetica_ultra';
  src: 
       url('/static/css/Helvetica Ultra Compressed.otf'); 
} 
@font-face {
  font-family: 'public_thin';
  src: 
       url('/static/font/PublicSans-Thin.woff2'); 
} 
@font-face {
  font-family: 'public_light';
  src: 
       url('/static/font/PublicSans-Light.woff2'); 
} 




.ocultar {
    display:none;
}
.mostrar:hover .ocultar {
    display : grid;
    grid:auto / auto auto auto ;

}
.mostrar4:hover .ocultar {
  display : grid;
  grid:auto / auto auto auto auto;

}

.parpadea {
  
    animation-name: parpadeo;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    background-color:#B4F9F9;
    -webkit-animation-name:parpadeo;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;

}
  @-moz-keyframes parpadeo{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
  }
  
  @-webkit-keyframes parpadeo {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
     100% { opacity: 1.0; }
  }
  
  @keyframes parpadeo {  
    0% { opacity: 1.0; }
     50% { opacity: 0.0; }
    100% { opacity: 1.0; }
  }

  .rojo {
    color:red;
  }

  
  .time-input {
    position: relative;
  }
  
  .time-input .icon {
    position: absolute;
    left: 10px; /* Ajusta la posición del icono */
    top: 50%;
    transform: translateY(-50%);
    /* Otros estilos del icono */
  }
  
  .time-input input[type="time"] {
    padding-left: 30px; /* Ajusta el padding izquierdo para dar espacio al icono */
  }

 
     
  .t-30 {
    font-size: 30px;
  }
  .f-rojo {
    background-color:#D15F14;
  }
  .rojo {
    color :red;
  }
  .t-blanco {
    color:white;
  }
  .text-\[30px\] {
    font-size: 30px;
  }


  /* Estilos para el contenedor de la fecha */
.date-input {
  display: flex;
  align-items: center;
}

/* Estilos para el separador '/' */
.date-input span {
  margin: 0 5px;
  color: #555;
}

/* Estilos para los input de día, mes y año */
#day,
#month,
#year {
  width: 50px;
  text-align: center;
}

#padre {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.5); /* Rojo con 50% de opacidad */
}

#hijo {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 800px;
  height: 400px;
  background-color: red; /* Fondo rojo sólido */
  z-index: 1000; /* Colocar por encima del div padre */
}

.group:hover .flex {
  background-color: #edf2f7; /* Cambia esto al color que desees */
}

.custom-file-upload {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f0f0f0;
  color: #333;
  cursor: pointer;
}

.custom-file-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.custom-file-upload:hover {
  background-color: #e0e0e0;
}

input[type="checkbox"]:checked {
  /* Cambiar el fondo cuando está marcado */
  background-color: #F6921F; /* Cambia el fondo a verde */
}

.cajita{
  width:300px;
  height:300px;
  border: 4px,solid,black;
  background-color: red;
  animation-name: escalar;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

.efecto {
  animation-name: escalar;
  animation-duration: 0.3s;
  animation-timing-function: linear;
}

@keyframes cambiar_color {
  from{
     background-color: red;
  }
  to{
     background-color: green;
  }
}
@keyframes opacidad {
  from{
     opacity: 0;
  }
  to{
    opacity: 1;
  }
}

@keyframes escalar {
  from {
    transform: scale(0); /* Escala inicial (0) */
  }
  to {
    transform: scale(1); /* Escala final (1) */
  }
}