/* ==================================================
	= form-info.css
================================================== */
#form-info{
	display: none;
}

#form-info .form-info-wrap{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100vh;
	background:black;
	background: rgba(0,0,0,0.6);

	display: flex;
	justify-content: center;
	align-items: center;
}

	#form-info  .form-info-contens{
		max-width:460px;
		width: 100%; 
		background: #fff;
		padding: 20px;
		box-sizing:border-box;
		border: 1px solid #2699D2;
	
		-moz-box-shadow: 0 0 10px rgba(0,0,0,0.8);
		-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.8);
		-o-box-shadow: 0 0 10px rgba(0,0,0,0.8);
		-ms-box-shadow: 0 0 10px rgba(0,0,0,0.8);
		box-shadow: 0 0 10px rgba(0,0,0,0.8);
	
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		-o-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
	}

	#form-info h3{
		font-size:18px;
		font-weight: bold;
		margin-bottom: 20px;
		padding-bottom: 10px; 
		color: #2699D2; 
		border-bottom: 1px solid #2699D2;
		
}

	#form-info .form-info-contens button {
		width: 100%; 
		font-size: 20px; 
		font-weight: 900; 
		padding: 10px 0; 
		cursor: pointer; 
		color: #fff; 
		background: #2699D2; 
		cursor: pointer; 
		border: 2px solid #7DD1F9; 
	
		-moz-box-shadow: 0 0 10px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.4);
		-o-box-shadow: 0 0 10px rgba(0,0,0,0.4);
		-ms-box-shadow: 0 0 10px rgba(0,0,0,0.4);
		box-shadow: 0 0 10px rgba(0,0,0,0.4);
	
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		-o-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
	
}

#form-info .form-info-contens button:hover {
	color: #2699D2; 
	background: #fff; 
}

	#form-info  .form-info-contens-errors{
		margin-bottom: 20px;
	}

	.idx-err{
		background: #FFE793;
		background: #DEFAFF; 
	}