body{
  background: #f5f6f7;
}
.loader-page{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.loader {
  font-size: 10px;
  margin:auto;
  margin-top: 40%;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: linear-gradient(to right, #d7d8d7 0, rgba(255, 255, 255, 0) 42%);
  position: relative;
  animation: load3 1.4s infinite linear;
}
.loader:before,
.loader:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}
.loader:before {
  width: 50%;
  height: 50%;
  background: #d7d8d7;
  border-radius: 100% 0 0 0;
}
.loader:after {
  background: #f5f6f7;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  margin: auto;
  bottom: 0;
  right: 0;
}
@keyframes load3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-title{
  width: 100%;
  display: inline-block;
  margin: 20px auto;
  font-size: 32px;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}