/* Elementos Principales */

body{
	background-color:#eee;
}

label{
	color: #38388d;
	font-size: 0.8rem;
	font-weight: bold;
}




.bg-card-reclamos{
	background-color: #4fc3f7;
	color: #002f6c;

	/*	background-color: #4fc3f7;   corregir*/ 
/*color: #002f6c;*/
}

.verdana{
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* .puntero{
	color: gold;
} */

.puntero:hover{
	cursor: pointer;
}

.modal {	
	width:100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	position: center;
	top: 0;
	left: 0;
	display: flex;
	z-index: 2;
	
	
	animation: modal 1s 0s forwards;
	visibility: hidden;
	opacity: 0;
	
}
.conte {
	margin-top:20px;
margin: auto;

width: auto;
height: auto;
background: white;
border-radius: 20px;
	
}
#cerrar{
	display: none;
	
}
#cerrar + label {
	position: fixed;
	color:	#fff;
	font-size: 25px;
	z-index: 3;
	background: #0076AF;
	height: 55px;
	width: 55px;
	line-height: 40px;
	border-radius: 50%;
	right:	10px;
	cursor: pointer;
	
	animation: modal 1s 0s forwards;
	visibility: hidden;
	opacity: 0;
	
}

#cerrar:checked +label, #cerrar:checked ~.modal{
	display:	none;
}



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