/* Contact form feedback styles. */
.form-feedback {
  margin: 14px 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}
.form-feedback:empty { display: none; }

.form-feedback--success {
  padding: 12px 14px;
  background: #e8f6ec;
  border: 1px solid #5cb85c;
  color: #1f6f1f;
  border-radius: 3px;
}
.form-feedback--error {
  padding: 12px 14px;
  background: #fdecec;
  border: 1px solid #d9534f;
  color: #8b2c2a;
  border-radius: 3px;
}

/* Disable state for submit button while sending */
.wpforms-submit:disabled {
  opacity: 0.55;
  cursor: wait;
  pointer-events: none;
}
