body {
	align-items:center;
	display: flex;
	justify-content: center;
	min-height:100vh;
}

.c-loader {
  animation: is-rotating 1s infinite;
  border: 6px solid #e5e5e5;
  border-radius:50%;
  border-top-color: #FF6800;
  height: 50px;
  width: 50px;
}

@keyframes is-rotating {
	to {
		transform: rotate(1turn)
	}
}