/*-----------------------------------------------------------------------------------*/
/*	NEW PRELOADER
/*-----------------------------------------------------------------------------------*/
.new_preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 20% 0;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.7);
	z-index: 999;
	text-align: center;
}
.loader {
	border: 5px solid #f3f3f3; 
	border-top: 5px solid #e26262; 
	border-radius: 50%;
	width: 50px;
	height: 50px;
	margin:10px;
	animation: spin 1s linear infinite;
	float: none;
	margin:  auto;
}
.loder-hidden{
	display: none; 
}
.loder-show{
	display: block; 
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.cinza-claro {
	background: #eeeeee;
}
.divfundo {
	width: 100%;
	height: 100%;
	display: block;
	position: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	opacity: 0.3;			
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;		
}