
.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 80px;
  width: 13.33333px;
  height: 13.33333px;
  border-radius: 50%;
  background: #E63339;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}






.whitescreen {
  display: none;
  z-index: -1000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  max-width: 100%;
  -webkit-box-shadow: 0 0 20px 0 #ccc;
  -moz-box-shadow: 0 0 20px 0 #ccc;
  box-shadow: 0 0 20px 0 #ccc;
  font-size: 14px
}

.whitescreen p {
  margin: 0
}

.whitescreen-top {
  background: #1976d2;
  color: #fff;
  padding: 20px
}

.whitescreen-icon {
  font-size: 30px;
  padding-bottom: 20px
}

.whitescreen-message {
  line-height: 20px
}

.whitescreen-email {
  padding-top: 20px
}

.whitescreen-bottom {
  padding: 20px
}

.whitescreen-bottom p {
  font-size: 10px;
  background: #fff;
  color: #000
}

