.modal {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	
	position: absolute;
	top: 0;
	left: 0;
	
	display: flex;
	
	animation: modal 1s 2s forwards;
	visibility: hidden;
	opacity: .95;
	z-index: 8888;
}

.contenido {
	margin: auto;
	width: 100%;
	height: 100%;
	text-align: center;
	position: absolute;
	top: 90px;
	border-radius: 0px;
}
.img-resposive {
    max-width: 100%;
    height: auto;
	vertical-align: middle;
}
#cerrar {
	display: none;
}

#cerrar + label {
	position: fixed;
	text-align: center;
	color: #fff;
	font-size: 22px;
	z-index: 9999;
	background: #b48502;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 50%;
	right: 50%;
	top: 70px;
	cursor: pointer;
	animation: modal 2s 3s forwards;
	visibility: hidden;
	opacity: 0;
}


#cerrar:checked + label, #cerrar:checked ~ .modal {
	display: none;
}

@keyframes modal {
	100% {
		visibility: visible;
		opacity: 1;
	}
}