.lds-facebook {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 70px;
}

.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 10px;
  background: darkorange;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
  left: 24px;
  animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
  left: 40px;
  animation-delay: 0s;
}

@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 48px;
  }
  50%, 100% {
    top: 24px;
    height: 26px;
  }
}
