.white-contact-form-2 {
  height: auto;
}

form .field {
  border-width: 1px;
  border-color: transparent;
  margin-bottom: 0;
}

form .field.invalid {
  border-color: yellow;
}

form .field-label-2 {
  margin-top: 10px;
}

form .field-label-2[for=Name] {
  margin-top: 0;
}

form span[class*='-error'] {
  color: yellow;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form .button.outline {
  margin-bottom: 10px;
}

.success-message,
.w-form-fail {
  margin-top: 25px;
}

/* button submit - loader */

.lds-ellipsis {
  /* change color here */
  color: #fff;
}

.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 69px;
  height: 19px;
}

.lds-ellipsis div {
  position: absolute;
  top: 7.33333px;
  width: 13.33333px;
  height: 13.33333px;
  border-radius: 50%;
  background: currentColor;
  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);
  }
}