.ajax-progress-throbber { display: none}
.form-group {
  width: 100%;
}

.form-label {
  position: absolute;
  left: 10px;
  top: 10px;
  color: #ccc;
  background-color: #fff;
  z-index: 10;
  transition: transform 150ms ease-out, font-size 150ms ease-out;
}

.focused .form-label {}

.form-input {
  position: relative;
  padding: 0;
  width: 100%;
  outline: 0;
  border: 0;
}
.form-group .form-input {
  /*margin-bottom: 0;*/
}
.input-validator {
  color: #7d7d7d;
  font-size: 12px;
  padding-left: 10px;
  position: relative;
  min-width: 33%;
}
.input-validator:before {
  font-size: 18px;
  color: #7d7d7d;
  content: "•";
  position: absolute;
  left: 0;
  top: 9px;
  line-height: 12px;
}
.input-validator.valid {
  color: black;
}
.input-validator.valid:before {
  color: #2069c0;
}
.lds-ellipsis {
  margin: auto;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #eee;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.pax-user-login-form, .pax-user-password-request-form, .pax-user-create-account-form {
  .captcha__description {
    display: none;
  }
}
