  /* Universal Scripted Forms Styling (with !important only where already present) */

/* General label styles */
.form_label,
div.form_question label {
  color: #fff !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 800;
  display: flex !important;
  width: auto !important;
}

/* Link styles in forms */
form a {
  color: #cfb987;
}
form a:hover {
  color: #e5e6c1;
  -webkit-text-decoration-color: #e5e6c1;
  -moz-text-decoration-color: #e5e6c1;
  text-decoration-color: #e5e6c1;
  text-underline-offset: 4px;
}

.action.form_action_submit.form_action {
  position: relative;
  left: 25px;
}
.action.form_action_submit.form_action,
.form_action_submit.form_action {
  left: 8px;
  padding-bottom: 20px;
}


.action.form_action_submit.form_action button {
  border: solid 2px #cfb987 !important;
  padding: 13px 24px 12px !important;
  font-size: 1.5625rem !important;
  line-height: 1.19 !important;
  border-radius: 60px !important;
  font-family: "p22-mackinac-pro", serif !important;
}
.action.form_action_submit.form_action button:hover {
  background-color: #cfb987;
  color: #000;
}

/* Radio button labels */
input[type="radio"] + label {
  cursor: pointer;
  display: inline-block;
  margin-left: 4px;
}

/* Emphasized text in forms */
em {
  color: #fff;
}

/* Scripted form container */
div.form_container {
  padding: 15px;
}

.form_container {
  display: flex;
  width: 100%;
}

div.form_container div.form_question.form_layout_table {
  display: block;
  align-items: center;
}
.form_container .form_question {
  display: block;
}
.form_container .form_label {
  width: auto;
  display: inline-block;
}
.form_container .form_responses {
  display: inline-block;
}


.form_container form input[type="text"],
.form_container form input[type="email"],
.form_container form select {
  padding: 7px 13px;
  font-size: 1.125rem;
  line-height: 1.5;
}

/* Responsive: Mobile (stack vertically) */
@media (max-width: 600px) {
  .form_layout_table {
    display: block !important;
  }
  .contact-form__image {
    display: none;
  }
  .form_responses {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    display: block;
  }
  .form_container {
    width: 100%;
    padding: 8px !important;
    display: block;
  }
}
/* Ipad pro size */
@media (min-width: 1024px) and (max-width: 1366px) {
  div.form_container {
    padding: 0;
  }
}
/* Tablet Sizes */
@media (min-width: 601px) and (max-width: 900px) {
  div.form_container .form_layout_table {
    display: block !important;
    align-items: stretch;
  }
  .contact-form__image {
    width: calc(33% - 30px);
    right: 45px;
    top: 10px;
    position: relative;
  }
  .form_responses {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    display: block;
  }
  div.form_container {
    width: 100%;
    padding: 0;
    display: block;
  }
  .contact-form__box {
    padding: 0;
  }
  .action.form_action_submit.form_action,
  .form_action_submit.form_action {
    left: 8px;
    padding-bottom: 20px;
    padding-top: 15px;
  }
  div.form_container {
    padding: 10px !important;
  }
}