.loader {
	display: inline-block;
	border: 6px solid #f3f3f3;
	border-radius: 50%;
	border-top: 6px solid #3498db;
	width: 40px;
	height: 40px;
	position: relative;
	top: 15px;
	margin: 0 10px 0 10px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

#loader.loader {
	display: none;
	top: 0 !important;
	width: 34px !important;
	height: 34px !important;
}

.loader-google {
	display: inline-block;
	border: 6px solid #f3f3f3;
	border-radius: 50%;
	border-top: 6px solid #DA6354;
	width: 40px;
	height: 40px;
	position: relative;
	top: 15px;
	margin: 0 10px 0 10px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}