.sec_modals{
	width:100%;
	z-index:10000;
}
.sec_modals .contenido{
	position:fixed;
	font-family:helvetica_round;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background: rgba(0,0,0,0.8);
	pointer-events:none;
	animation: modal .5s 1s forwards;
	z-index:10000;
}
.sec_modals .contenido > div {
	width:60%;
	position: relative;
	margin: 5% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 5px;
	background: #fff;
	background: -moz-linear-gradient(#fff, #999);
	background: -webkit-linear-gradient(#fff, #999);
	background: -o-linear-gradient(#fff, #999);
	transition: opacity 400ms ease-in;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
}
.sec_modals .cerrar {
  
	background: silver;
	color: #FFFFFF;
	line-height: 26px;
	width: 80px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 12px;
	box-shadow: 1px 1px 3px #000;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
}
.sec_modals .cerrar:hover {
	background: gray; 
}
.sec_modals h2{
	color:#96100F;
	margin:.5vw 0;
	font-size:2rem;
}
.sec_modals p{
	font-size:1.3rem;
	line-height:1.5rem;
	text-align:justify;
}
@keyframes modal{
    100% {
    visibility: visible ;
    opacity: 1;
    }
}
#cerrar{
    display: none;
}
#cerrar + label{
      position:fixed;
    top:50px;
    right:450px;
    z-index:10001;
    cursor: pointer;
    animation: modal .5s 1s forwards;
    visibility: hidden;
    text-align:center;
}
#cerrar:checked + label, #cerrar:checked ~ .contenido{
    display: none;
}

