.elementor-1003869 .elementor-element.elementor-element-e50820a{--display:flex;}/* Start custom CSS for wpforms, class: .elementor-element-360c1af *//* ==========================================================
   WPForms (#1003686) – Modest modern theme-like styling
   + fixes for multi-select
   + darker placeholders
   + dropdown arrow indicator
   + WPML/RTL friendly
   ========================================================== */

#wpforms-1003686 {
  --line: #e9e9e9;
  --text: #111;
  --muted: #6f6f6f; /* placeholder + icon tone */

  --radius-pill: 999px;
  --radius-area: 28px;
  --radius-multi: 18px;
}

/* Keep wrapper clean */
#wpforms-1003686 form.wpforms-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

/* Field spacing */
#wpforms-1003686 .wpforms-field {
  margin-bottom: 18px;
}

/* Labels */
#wpforms-1003686 .wpforms-field-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
}

#wpforms-1003686 .wpforms-required-label {
  color: #ef4444;
}

/* ----------------------------------------------------------
   Inputs / selects (single)
   ---------------------------------------------------------- */
#wpforms-1003686 input[type="text"],
#wpforms-1003686 input[type="email"],
#wpforms-1003686 input[type="tel"],
#wpforms-1003686 select:not([multiple]) {
  width: 100%;
  height: 54px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--text);
  font-size: 15px;
  outline: none;
  box-shadow: none;
  transition: border-color .15s ease;
}

/* Placeholder (all browsers) */
#wpforms-1003686 input::placeholder,
#wpforms-1003686 textarea::placeholder {
  color: var(--muted) !important;
  opacity: 1 !important; /* Safari/Firefox default fading */
}
#wpforms-1003686 input::-moz-placeholder,
#wpforms-1003686 textarea::-moz-placeholder {
  color: var(--muted) !important;
  opacity: 1 !important;
}

/* Textarea */
#wpforms-1003686 textarea {
  width: 100%;
  min-height: 170px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-area);
  background: #fff;
  color: var(--text);
  font-size: 15px;
  outline: none;
  box-shadow: none;
  resize: vertical;
  transition: border-color .15s ease;
}

/* Focus state (subtle) */
#wpforms-1003686 input[type="text"]:focus,
#wpforms-1003686 input[type="email"]:focus,
#wpforms-1003686 input[type="tel"]:focus,
#wpforms-1003686 select:focus,
#wpforms-1003686 textarea:focus {
  border-color: #cfcfcf;
}

/* Descriptions */
#wpforms-1003686 .wpforms-field-description {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

/* ----------------------------------------------------------
   Dropdown arrow indicator (native single selects)
   ---------------------------------------------------------- */
#wpforms-1003686 select:not([multiple]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* space for arrow */
  padding-inline-end: 52px;

  /* arrow icon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236f6f6f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: calc(100% - 20px) 50%;
}

/* ----------------------------------------------------------
   Submit button (black pill)
   ---------------------------------------------------------- */
#wpforms-1003686 .wpforms-submit-container {
  margin-top: 10px;
}

#wpforms-1003686 button.wpforms-submit {
  width: auto;
  min-width: 160px;
  height: 56px;
  padding: 0 42px;
  border: 0;
  border-radius: var(--radius-pill);
  background: #0b0b0b;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: none;
  transition: opacity .15s ease, transform .08s ease;
}

#wpforms-1003686 button.wpforms-submit:hover {
  opacity: 0.92;
}

#wpforms-1003686 button.wpforms-submit:active {
  transform: translateY(1px);
}

/* Clean error messages */
#wpforms-1003686 label.wpforms-error {
  margin-top: 8px;
  font-size: 13px;
  color: #b91c1c;
}

/* ----------------------------------------------------------
   Phone field (intl-tel-input) – match pill style
   ---------------------------------------------------------- */
#wpforms-1003686 .iti {
  width: 100%;
}

#wpforms-1003686 .iti__tel-input {
  height: 54px !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-pill) !important;
  background: #fff !important;
  box-shadow: none !important;

  /* LTR default: room for flag on the start side */
  padding-inline-start: 56px !important;
  padding-inline-end: 20px !important;
}

/* Country button shape */
#wpforms-1003686 .iti__selected-country {
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
}

/* ----------------------------------------------------------
   FIX: Multi-select styling (select[multiple])
   ---------------------------------------------------------- */
#wpforms-1003686 select[multiple] {
  width: 100%;
  height: auto !important;
  min-height: 160px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-multi) !important; /* not pill */
  background: #fff;
  color: var(--text);
  font-size: 15px;
  box-shadow: none;
  outline: none;
  overflow: auto;
}

/* Prevent the "giant blue bar" look */
#wpforms-1003686 select[multiple] option:checked {
  background: #111 !important;
  color: #fff !important;
}

/* Optional hover */
#wpforms-1003686 select[multiple] option:hover {
  background: #f2f2f2;
}

/* ----------------------------------------------------------
   Choices.js enhanced select styling (if enabled by WPForms)
   (chips / searchable dropdown)
   ---------------------------------------------------------- */
#wpforms-1003686 .choices__inner {
  min-height: 54px;
  padding: 10px 14px !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-multi) !important;
  background: #fff !important;
  box-shadow: none !important;
}

/* Selected chips */
#wpforms-1003686 .choices__list--multiple .choices__item {
  background: #111 !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: var(--radius-pill) !important;
  padding: 6px 10px !important;
  font-size: 13px;
  margin: 6px 6px 0 0 !important;
}

/* Dropdown panel */
#wpforms-1003686 .choices__list--dropdown,
#wpforms-1003686 .choices__list[aria-expanded] {
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
}

/* Dropdown options */
#wpforms-1003686 .choices__list--dropdown .choices__item--choice {
  padding: 12px 14px !important;
}

/* Highlighted option */
#wpforms-1003686 .choices__list--dropdown .is-highlighted {
  background: #f3f3f3 !important;
  color: #111 !important;
}

/* ----------------------------------------------------------
   RTL compatibility (WPML/RTL)
   ---------------------------------------------------------- */
html[dir="rtl"] #wpforms-1003686 select:not([multiple]),
body.rtl #wpforms-1003686 select:not([multiple]) {
  background-position: 20px 50%;
  padding-inline-end: 20px;
  padding-inline-start: 52px;
}

html[dir="rtl"] #wpforms-1003686 .iti__tel-input,
body.rtl #wpforms-1003686 .iti__tel-input {
  padding-inline-start: 20px !important;
  padding-inline-end: 56px !important;
}

html[dir="rtl"] #wpforms-1003686 .iti__selected-country,
body.rtl #wpforms-1003686 .iti__selected-country {
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

/* Mobile comfort */
@media (max-width: 767px) {
  #wpforms-1003686 input[type="text"],
  #wpforms-1003686 input[type="email"],
  #wpforms-1003686 input[type="tel"],
  #wpforms-1003686 select:not([multiple]) {
    height: 52px;
  }

  #wpforms-1003686 button.wpforms-submit {
    min-width: 150px;
    height: 54px;
  }
}/* End custom CSS */