.loader-background {
	background-color: rgba(255,255,255,0.7);
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.loader {
	border: 5px solid #f3f3f3;
	border-radius: 50%;
	border-top: 5px solid #3498db;
	width: 50px;
	height: 50px;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	margin-left: -35px;
	margin-top: -35px;
}

.spiner-loading {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1000000 !important;
	background: url("../images/reload.gif") no-repeat 50% 50%;
	background-color: rgba(255,255,255,0.7);
}


