@charset "UTF-8";
/* CSS Document */

#loading{
	width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fafafa;
	position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
	display: flex;
	justify-content: center;
  align-items: center;
	opacity: 1;
}

.spinner {
	 width: 80px;
	 height: 80px;
	 border-radius: 50%;
	 border: 3px solid #b4b4b4;
	 border-right-color: transparent;
	 animation:1s linear infinite rotation1;

}

@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}


.loaded {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width:769px) {
	.spinner {
		 width: 30vw;
		 height: 30vw;
}


/* Loading animation */
