@charset "utf-8";
/* CSS Document */

#conteudo{ display:none; }

	
.c-loader {
	animation: is-rotating 1s infinite;
	border: 8px solid #C7C7C7;
	border-radius: 50%;
	border-top-color: #1b893d;
	height: 80px;
	width: 80px;
	margin: 0 auto;
	margin-top: 40vh;
}

@keyframes is-rotating {
	 to {
	transform: rotate(1turn);
}
}