@keyframes lds-message {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@-webkit-keyframes lds-message {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
.lds-message {
  position: relative;
}
.lds-message > div {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 20px;
  -webkit-animation: lds-message 1s cubic-bezier(0.3, 0, 0.7, 1) infinite;
  animation: lds-message 1s cubic-bezier(0.3, 0, 0.7, 1) infinite;
}
.lds-message > div:nth-of-type(4n + 1) {
  background: #ea1edf;
}
.lds-message > div:nth-of-type(4n + 2) {
  background: #00c8ff;
}
.lds-message > div:nth-of-type(4n + 3) {
  background: #ffd500;
}
.lds-message > div:nth-of-type(4n) {
  background: #00c7cc;
}
.lds-message > div:nth-of-type(4n + 1) {
  left: 28px;
  -webkit-animation-delay: -0.75s;
  animation-delay: -0.75s;
}
.lds-message > div:nth-of-type(4n + 2) {
  left: 68px;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.lds-message > div:nth-of-type(4n + 3) {
  left: 108px;
  -webkit-animation-delay: -0.25s;
  animation-delay: -0.25s;
}
.lds-message > div:nth-of-type(4n + 4) {
  left: 148px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.lds-message {
  width: 200px !important;
  height: 40px !important;
  margin: 0 auto;
  -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
  transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}