/* xl - DESKTOP STYLES */ 
/* ===============================
   CONTACT FORM – GLOBAL STYLES
================================ */

.contact-form {
  max-width: 820px;
  margin: 0 auto;
}

/* INPUTS, SELECT, TEXTAREA */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  border-radius: 8px !important;
  border: 1px solid #dcdcdc !important;
  background-color: #fff !important;
  font-size: 15px !important;
  font-family: inherit !important;
  box-shadow: none !important;
  outline: none !important;
}

/* TEXTAREA */
.contact-form textarea {
  min-height: 140px !important;
  resize: vertical !important;
}

/* LABELS */
.contact-form label {
  display: block !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin-bottom: 6px !important;
  color: #222 !important;
}

/* SPACING */
.contact-form .form-group {
  margin-bottom: 22px !important;
}

/* CF7 WRAPPER FIX */
.contact-form span.wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}

/* ===============================
   DROPDOWN / SELECT FIX
================================ */

.contact-form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  height: 52px !important;
  line-height: 12px !important;
  cursor: pointer !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 14px !important;
  
  padding-right: 46px !important;
  color: #555 !important;
}

/* ===============================
   BUTTON STYLES
================================ */

.contact-form button,
.contact-form input[type="submit"] {
  background-color: #111 !important;
  color: #fff !important;
  padding: 14px 44px !important;
  border-radius: 30px !important;
  font-size: 15px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}
.contact-form button:hover,
.contact-form input[type="submit"]:hover {
  background-color: #333 !important;
}

/* ===============================
   MOBILE FIX
================================ */

@media (max-width: 768px) {
  .contact-form button,
  .contact-form input[type="submit"] {
    width: 100% !important;
  }
}

