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;
  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: #2898cb;
  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);
  }
}
/* ------ spinner-signup ------ */
#spinner-signup {
  display: table;
  vertical-align: middle;
  width: 100%;
  height: 100vh;
  text-align: center;
  background: #fff;
}
#spinner-signup .signup-div {
  display: table-cell;
  vertical-align: middle;
}
#spinner-signup h2 {
  font-family: 'Prompt';
  font-size: 24px;
  line-height: 1.25em;
  color: #2898cb;
  margin: 0;
}
#spinner-signup .progress {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0px;
  height: 10px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  margin: 36px auto 10px auto;
}
#spinner-signup .progress-value {
  animation: load 5s normal forwards;
  box-shadow: 0 3px 10px 0 rgba(40, 152, 203, 0.16);
  background: #2898cb;
  border-radius: 10px;
  height: 10px;
  width: 0;
}
@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}
.hide,
#spinner-normal.hide,
#spinner-signup.hide {
  display: none;
}
#spinner-normal:not(.hide) {
  display: block;
}
#spinner-signup:not(.hide) {
  display: table;
}
#spinner-signup:not(.en) .th,
#spinner-signup.en .en {
  display: block;
}
#spinner-signup.en .th,
#spinner-signup:not(.en) .en {
  display: none;
}
@media screen and (max-width: 1024px) {
  #spinner-signup .progress {
    width: 95%;
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  #spinner-signup h2 {
    font-size: 18px;
    line-height: 1.25em;
  }
  #spinner-signup .progress {
    height: 10px;
    margin: 20px auto 10px auto;
  }
  #spinner-signup .progress-value {
    height: 10px;
  }
}
@media screen and (max-width: 590px) {
  #spinner-signup .progress {
    width: 95%;
    max-width: 285px;
  }
}
