.loader {
	position: absolute;
	left: auto;
	top: auto;
	width: 60px;
	height: 60px;
	z-index: 198;
	display: none;
}

.loader_animation {
	width: 100%;
	height: 100%;
	border: 5px solid #FFFFFF;
	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); }
}
