.loader-parent.page-inline{
  height:500px;
  position:relative;
}
.loader-parent.inline{
  height:200px;
  position:relative;
}

.loader-walk {
  width: 70px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loader-walk > div {
  content: "";
  width: 14px;
  height: 14px;
  background: #008fd6;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: animate 2s linear infinite;
          animation: animate 2s linear infinite;
}
.loader-walk > div:nth-of-type(1) {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.loader-walk > div:nth-of-type(2) {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.loader-walk > div:nth-of-type(3) {
  -webkit-animation-delay: -1.2s;
          animation-delay: -1.2s;
}
.loader-walk > div:nth-of-type(4) {
  -webkit-animation-delay: -1.6s;
          animation-delay: -1.6s;
}

@-webkit-keyframes animate {
  0% {
    left: 70px;
    top: 0;
  }
  80% {
    left: 0;
    top: 0;
  }
  85% {
    left: 0;
    top: -14px;
    width: 14px;
    height: 14px;
  }
  90% {
    width: 28px;
    height: 9px;
  }
  95% {
    left: 70px;
    top: -14px;
    width: 14px;
    height: 14px;
  }
  100% {
    left: 70px;
    top: 0;
  }
}

@keyframes animate {
  0% {
    left: 70px;
    top: 0;
  }
  80% {
    left: 0;
    top: 0;
  }
  85% {
    left: 0;
    top: -14px;
    width: 14px;
    height: 14px;
  }
  90% {
    width: 28px;
    height: 9px;
  }
  95% {
    left: 70px;
    top: -14px;
    width: 14px;
    height: 14px;
  }
  100% {
    left: 70px;
    top: 0;
  }
}
