.direcciones{
    background-repeat: no-repeat;
    /* margin-left: 15px; */
}

.sombreado{
    background-color: rgba(255, 255, 255, 0.74) !important;
}

.titulos{
    font-size: xx-large;
}

.show{
    display: block;
}

.hide{
    display: none;
}

.modal2 {
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	
	position: absolute;
	top: 0;
	left: 0;
	
	display: flex;
	
	animation: modal 2s 3s forwards;
	/* visibility: hidden; */
	opacity: 0;
}

@keyframes modal2 {
	100% {
		visibility: visible;
		opacity: 1;
	}
}

.contenido2 {
	margin: auto;
	width: 40%;
	height: 40%;
	background: white;
	border-radius: 10px;
}
