.loading{
  position: fixed;
  z-index: 10000;
  height: 100%;
  width: 100vw;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner-icone{
  color: white;
  font-size: 75px;
}

.spinner {
	border: 5px solid #DCDCDC;
	border-radius: 100%;
	height: 150px;
	width: 150px;
	border-left-color: #66BB6A;

}
.loading-icone {
	animation: loading  linear infinite;
}
@keyframes loading {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
