body{margin:0;}
#enter-loading {
	height: 100%;
	width: 100%;
	background-color: #fff;
	overflow: hidden;
	margin-top: 200px;
}

#enter-loading .flex {
	display: flex;
	justify-content: center;
}

/* 3 DOT LOADER */
#enter-loading .dot-loader {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: lightgreen;
  position: relative;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: 1.3s enter-grow ease-in-out infinite;
  animation: 1.3s enter-grow ease-in-out infinite;
}

#enter-loading .dot-loader--2 {
  -webkit-animation: 1.3s enter-grow ease-in-out infinite 0.2s;
  animation: 1.3s enter-grow ease-in-out infinite 0.2s;
  margin: 0 20px;
}
#enter-loading .dot-loader--3 {
  -webkit-animation: 1.3s enter-grow ease-in-out infinite 0.4s;
  animation: 1.3s enter-grow ease-in-out infinite 0.4s;
}

#enter-loading .loadingThree{
	height: 30px;
	text-align: center;
	font-size: 18px;
	margin-top: 50px;
}
#enter-loading .loadingThree span{
	display: inline-block;
	opacity: 0;
	-webkit-animation: 2.04s enter-load linear infinite;
}

@-webkit-keyframes enter-grow {
	0%, 40%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes grow {
	0%, 40%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes enter-load{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}

#enter-loading .loadingThree span:nth-child(1){
	-webkit-animation-delay:0.4s;
}
#enter-loading .loadingThree span:nth-child(2){
	-webkit-animation-delay:0.7s;
}
#enter-loading .loadingThree span:nth-child(3){
	-webkit-animation-delay:1.0s;
}
#enter-loading .loadingThree span:nth-child(4){
	-webkit-animation-delay:1.3s;
}
#enter-loading .loadingThree span:nth-child(5){
	-webkit-animation-delay:1.5s;
}
#enter-loading .loadingThree span:nth-child(6){
	-webkit-animation-delay:1.8s;
}
#enter-loading .loadingThree span:nth-child(7){
	-webkit-animation-delay:1.9s;
}
#enter-loading .loadingThree span:nth-child(8){
	-webkit-animation-delay:2.0s;
}