.loader_blackout {
  position: fixed;
  z-index: 9;
  width: 100%;
  height: 2000px;
  background: #000;
  opacity: 60%;
  display: none;
}

.loader_parent {
   position: fixed;
  z-index: 10;
  width: 300px;
  height: 120px;
  display: block;
  left: calc(50% - 150px);
  top: calc(50% - 45px);
  background: #93c1bc;
  text-align: center;
  padding-left: 120px;
  padding-top: 15px;
  display: none;
}

.loader
{
	width:60px;
	color: #000;
	background: #93c1bc;
	text-align: center;
}

.loader-wheel {
  animation: spin 1s infinite linear;
  border: 2px solid rgba(30, 30, 30, 0.5);
  border-left: 4px solid #93c1bc;
  border-radius: 50%;
  height: 50px;
  margin-bottom: 10px;
  width: 50px;
}

.loader-text {
  color: #000;
  font-family: arial, sans-serif;
}

.loader-text:after {
  content: 'Loading...';
}

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

@keyframes load {
  0% {
    content: 'Loading';
  }
  33% {
    content: 'Loading.';
  }
  67% {
    content: 'Loading..';
  }
  100% {
    content: 'Loading...';
  }
}
