

.loader-wrapper {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #ffffff; 
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: fixed;

}

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
	
}
.three-dot-loader {
  display: grid;
  width: 100px;
  grid-template-columns: 1fr 1fr 1fr;
}

.three-dot-loader img {
	width: 200px;
	text-align: center;
	margin-left: -100px;

}

.dot {
  background-color: #ffffff;
  width: 20px;
  height: 20px;
  animation-name: dot-animation;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-fill-mode: forward;
  border-radius: 0%;
}

.dot-1 {
  
}

.dot-2 {
  animation-delay: 0.33s
}

.dot-3 {
  animation-delay: 0.66s
}

@keyframes dot-animation{
  from{ opacity: 0}
  to{ opacity: 1}
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
position: fixed;

}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}

@media screen and (max-width: 750px) {
.loader {
	margin-right: 80px;
}
}
@media screen and (max-width: 550px) {
.loader {
	margin-right: -10px;
}
}

