@keyframes spinner1 {
  to {
    transform: rotate(360deg);
  }
}
body .grecaptcha-badge {
  visibility: hidden;
}
.captcha-active .grecaptcha-badge {
  visibility: visible;
}
#static {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  max-width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #f2f4f8;
}
#static:after {
  position: absolute;
  content: '';
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  animation: spinner1 600ms linear infinite;
  background: url(../img/spinner.png) no-repeat;
  background-size: cover;
  z-index: 0;
}
