@keyframes animation-nay1id {
  0% {
    top: 0;
  }
  25% {
    top: -7px;
  }
  50% {
    top: 8px;
  }
  75% {
    top: -10px;
  }
  100% {
    top: 0;
  }
}

.EllipsisContainer {
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.Ellipsis {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.Ellipsis div {
  position: relative;
  margin: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #264887;
}

.Ellipsis div:nth-of-type(1) {
  -webkit-animation-name: animation-nay1id;
  animation-name: animation-nay1id;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.Ellipsis div:nth-of-type(2) {
  -webkit-animation-name: animation-nay1id;
  animation-name: animation-nay1id;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.Ellipsis div:nth-of-type(3) {
  -webkit-animation-name: animation-nay1id;
  animation-name: animation-nay1id;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.Ellipsis div:nth-of-type(4) {
  height: 38px;
  width: 4px;
  border-radius: 3px;
}
