.loader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 170px;
	height: 170px;
	margin: -90px 0 0 -85px;
	z-index: 98;
	display: none;
}

.loader_animation {
	width: 60px;
	height: 60px;
	margin-left: 55px;
	border: 5px solid #EBE2D3;
	border-radius: 50%;
	border-top: 5px solid transparent;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	box-sizing: border-box;
	text-align: center;
}
.loader_icon {
	margin-top: -60px;
	text-align: center;
	height: 60px;
}
.loader_text {
	margin-top: 12px;
	text-align: center;
}

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

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