@charset "utf-8";
.overlay 

	{
    	position: fixed;
    	top: 0;
    	bottom: 0;
    	left: 0;
    	right: 0;
    	background: rgba(255, 255, 255, 0.7);
    	transition: opacity 0.9s;
    	visibility: hidden;
    	opacity: 0;
	}

.overlay:target 
	
	{
    	visibility: visible;
    	opacity: 5;
	}


.popupBody

	{
    	width: 85%;
    	padding: 2%;
    	border-radius: 15px;
    	box-shadow: 0 0 5px #CCC;
    	background:rgba(1,30,74,0.90);
    	position:relative;
    	transition: all 2s ease-in-out;
    	margin: 2% auto;
		align-items: center;
	}


.cerrar

	{
    	position: absolute;
    	top: 20px;
    	right: 30px;
    	transition: all 500ms;
    	font-size: 30px;
    	font-weight: bold;
    	text-decoration: none;
    	color: #F00;
	}



