#form-preloader {
  display: none;
}

#sendloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000000000000000000000000000000000;
  justify-content: center;
  align-items: center;
  display: flex;
  opacity: 1 !important;
  width: 100vw;
  height: 100vh;
  margin: auto;
}
#sendloader .loader_plate {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#sendloader .loading-animation {
  list-style: none;
  position: relative;
  height: 1px;
  position: relative;
  margin: 0 auto;
}
#sendloader .loading-animation .bg-color {
  background-color: transparent;
}
#sendloader .loading-animation li {
  /*   margin-top: -3px; */
  /*    height: 10px;
  width: 10px; */
  border-radius: 10px;
  /*  background-color: blue;*/
  opacity: 0;
  /*   box-shadow: 0px 0px 4px blue, 0px 0px 8px blue, 0px 0px 12px blue, 0px 0px 18px blue; */
  position: absolute;
  left: -10%;
  animation-name: loading;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: normal;
}
#sendloader .loading-animation li:nth-child(1) {
  animation-delay: 250ms;
}
#sendloader .loading-animation li:nth-child(2) {
  animation-delay: 500ms;
}
#sendloader .loading-animation li:nth-child(3) {
  animation-delay: 750ms;
}
#sendloader .loading-animation li:nth-child(4) {
  animation-delay: 1s;
}
#sendloader .loading-animation li:nth-child(5) {
  animation-delay: 1.25s;
}
#sendloader .loading-animation::before {
  content: attr(data-first);
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
#sendloader .loading-animation::after {
  content: attr(data-second);
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

@keyframes loading {
  0% {
    left: 0%;
    opacity: 0;
  }
  20%, 60% {
    left: 50%;
    opacity: 1;
  }
  90% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 100%;
  }
}/*# sourceMappingURL=Preloader.min.css.map */