.ldr {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.ldr div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 13px;
  background: #fff;
  animation: ldr 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.ldr div:nth-child(1) {
  left: 6px;
  animation-delay: -0.24s;
}
.ldr div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}
.ldr div:nth-child(3) {
  left: 45px;
  animation-delay: 0;
}
@keyframes ldr {
  0% {
    top: 6px;
    height: 51px;
  }
  50%, 100% {
    top: 19px;
    height: 26px;
  }
}

/* Loader IDE */
.ldr-ide {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.ldr-ide div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 13px;
  background: #1979CA;
  animation: ldr 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.ldr-ide div:nth-child(1) {
  left: 6px;
  animation-delay: -0.24s;
}
.ldr-ide div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}
.ldr-ide div:nth-child(3) {
  left: 45px;
  animation-delay: 0;
}
@keyframes ldr-ide {
  0% {
    top: 6px;
    height: 51px;
  }
  50%, 100% {
    top: 19px;
    height: 26px;
  }
}
