.loader_intext {
	display: none;
	box-sizing: border-box;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	border-width: 0.2em;
	border-style: solid;
	animation: spin_clockwise 1s linear infinite;
}
.inline_circle {
	display: inline-block;
	width: 1em;
	height: 1em;
	border-radius: 0.5em;
}


@keyframes spin_clockwise {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}