.loading {
  font-size: 0 !important;
  width: 40px !important;
  height: 40px !important;
  margin-top: 5px !important;
  border-radius: 20px !important;
  margin-left: auto;
  margin-right: auto;
  padding: 0 !important;
  border: 3px solid #ffffff !important;
  -webkit-box-shadow: 0 0 25px 0 rgba(3, 3, 3, 0.45),
    0 0 3px 0 rgba(3, 3, 3, 0.65) !important;
  box-shadow: 0 0 25px 0 rgba(3, 3, 3, 0.45), 0 0 3px 0 rgba(3, 3, 3, 0.65) !important;
  border-bottom: 3px solid rgba(255, 255, 255, 0) !important;
  border-left: 3px solid rgba(255, 255, 255, 0) !important;
  /*background-color:rgba(0, 0, 0, 0.25) !important;*/
  animation-name: rotateAnimation !important;
  -webkit-animation-name: wk-rotateAnimation !important;
  animation-duration: 1s !important;
  -webkit-animation-duration: 1s !important;
  animation-delay: 0.2s !important;
  -webkit-animation-delay: 0.2s !important;
  animation-iteration-count: infinite !important;
  -webkit-animation-iteration-count: infinite !important;
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes wk-rotateAnimation {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

.form-submit {
  text-align: center;
}
