.app-loading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 10em;
}
.custom_loader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background-color: transparent;
}

.custom_loader .loader-dot1 {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 2em 5px;
  background-image: linear-gradient(180deg, #00ce57 0%, #0076b5 100%);
  position: relative;
  bottom: 10px;
  transform: translateZ(0);
  top: -1em;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  animation-fill-mode: both;
  animation: loader-13 1s infinite ease-in-out;
  -webkit-animation: loader-13 1s infinite ease-in-out;
  animation-delay: 0.2s;
}

.custom_loader .loader-dot2 {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 2em 5px;
  background-image: linear-gradient(180deg, #00ce57 0%, #0076b5 100%);
  position: relative;
  bottom: 10px;
  transform: translateZ(0);
  top: -1em;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  animation-fill-mode: both;
  animation: loader-13 1s infinite ease-in-out;
  -webkit-animation: loader-13 1s infinite ease-in-out;
  animation-delay: 0.4s;
}

.custom_loader .loader-dot3 {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 2em 5px;
  background-image: linear-gradient(180deg, #00ce57 0%, #0076b5 100%);
  position: relative;
  bottom: 10px;
  transform: translateZ(0);
  top: -1em;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  animation-fill-mode: both;
  animation: loader-13 1s infinite ease-in-out;
  -webkit-animation: loader-13 1s infinite ease-in-out;
  animation-delay: 0.6s;
}

@keyframes loader-13 {
  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }

  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}
