body {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 48vh auto 0 auto;
}

.loading-app .flowaccount-loading {
  position: absolute;
  width: 82px;
  height: 82px;
  margin-left: -41px;
  margin-top: -41px;
  top: 50%;
  left: 50%;
  animation: filterimage 5s infinite;
}

.loading-app .loading-page {
  position: absolute;
  /* border: 1px solid #000; */
  top: 50%;
  left: 50%;
  margin-left: -43px;
  margin-top: -40px;
}

@keyframes filterimage {
  0% {
    -webkit-filter: grayscale(0%) drop-shadow(0 0 0 #ccc);
  }
  50% {
    -webkit-filter: grayscale(100%) drop-shadow(1px 2px 6px #ccc);
  }
  100% {
    -webkit-filter: grayscale(0%) drop-shadow(0 0 0 #ccc);
  }
}
.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--system_color_blue);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
