/* Colores para la web */
.modal01 {
    display: none;
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    padding-top: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden; /* Evita el scroll en la página */
}
/* Efecto de disolvencia */
.modal01.mostrar{
    animation: fadeInModal01 0.5s ease-in-out;
}

.modal01.ocultar{
    animation: fadeOutModal01 0.5s ease-in-out;
}
/* Evita el scroll en el body cuando el modal está activo */
body.modal01-abierto {
    overflow: hidden;
}
/* Caja interna con imágenes */
.boxModal01 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: white;
    width: 90%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow-y: auto; /* Permite desplazarse solo dentro de la cajita */
    border-radius: 10px;
    text-align: center;
    position: relative;
}
@media only screen and (min-width: 320px) {
}
@media only screen and (min-width: 480px) {

} 
@media only screen and (min-width: 590px) {

}
/* Ancho horizontal del celular Xiomi 11 Ancho:395px - 790px*/
@media only screen and (min-width: 748px) {
	.boxModal01{
		width:500px;
	}
}
@media only screen and (min-width: 1024px) {

}
@media only screen and (min-width: 1140px) {

}
