ul.formFlow {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
  padding: 0; }
  ul.formFlow li {
    display: inline-flex;
    justify-content: center;
    flex: 1 0 33.333%;
    background: #111111;
    color: #fff;
    list-style: none;
    padding: 0;
    margin: 0 !important;
    height: 100%;
    font-size: 16px;
    font-weight: bold;
    align-items: center;
    position: relative; }
    ul.formFlow li:before {
      display: none; }
    ul.formFlow li.visited {
      background: #999;
      color: #fff; }
    ul.formFlow li.active {
      background: #580808;
      color: #fff;
      position: relative; }
      ul.formFlow li.active:after {
        position: absolute;
        content: '';
        right: -40px;
        top: 0;
        z-index: 1;
        width: 0;
        height: 0;
        border: 20px solid transparent;
        border-left: 20px solid #580808; }
    ul.formFlow li.second.active:before {
      display: block;
      position: absolute;
      content: '';
      left: 0;
      top: 0;
      z-index: 3;
      width: 0;
      height: 0;
      border: 20px solid transparent;
      border-left: 20px solid #111; }
    ul.formFlow li.third.active {
      background: #580808 !important;
      color: #fff; }
      ul.formFlow li.third.active:after {
        display: none; }
      ul.formFlow li.third.active:before {
        background: none;
        display: inline;
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        z-index: 2;
        width: 0;
        height: 0;
        border-radius: 0;
        border: 20px solid transparent;
        border-left: 20px solid #111; }

#formArea {
  padding-bottom: 60px;
  padding: 0 15px; }
  #formArea dl {
    justify-content: space-between;
    flex-wrap: wrap; }
    #formArea dl dt {
      text-align: left;
      color: #111111;
      padding-bottom: 10px;
      font-weight: normal; }
    #formArea dl dd {
      padding-bottom: 10px; }
      #formArea dl dd.fb100 {
        flex-basis: 100%; }
  #formArea .att {
    color: #580808;
    font-size: 12px;
    margin: 0 5px; }
  #formArea .error {
    margin: 0; }
  #formArea .radio_wrap {
    margin-top: 10px; }
  #formArea .vertical-item {
    display: block !important; }
  #formArea input[type="text"],
  #formArea input[type="email"],
  #formArea input[type="number"],
  #formArea textarea {
    padding: 8px .5em 8px 10px;
    margin: 0;
    background: #EEEEEE;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid #EEEEEE; }
    #formArea input[type="text"]:focus,
    #formArea input[type="email"]:focus,
    #formArea input[type="number"]:focus,
    #formArea textarea:focus {
      background: #fff; }
    #formArea input[type="text"]:hover,
    #formArea input[type="email"]:hover,
    #formArea input[type="number"]:hover,
    #formArea textarea:hover {
      background: #fff; }
    #formArea input[type="text"] + input,
    #formArea input[type="email"] + input,
    #formArea input[type="number"] + input,
    #formArea textarea + input {
      margin-top: 10px; }
  #formArea input[type="number"].short {
    width: 60px; }
  #formArea input[type="text"],
  #formArea input[type="email"] {
    width: 100%; }
    #formArea input[type="text"] .short,
    #formArea input[type="email"] .short {
      max-width: 150px; }
  #formArea select {
    padding: .4em 0 .3em .5em;
    margin-bottom: 5px;
    display: block;
    border-color: #e7e7e7; }
    #formArea select option {
      word-wrap: normal; }
  #formArea input[type="text"].short {
    width: 200px;
    text-align: left;
    margin-bottom: 0; }
  #formArea input[type="text"].hasDatepicker {
    margin: 5px 0;
    background: #EEEEEE; }
    #formArea input[type="text"].hasDatepicker:hover, #formArea input[type="text"].hasDatepicker:focus {
      background: #fff; }
  #formArea .mwform-checkbox-field {
    display: inline-block;
    width: auto;
    margin: 5px 5px;
    font-size: 14px; }
  #formArea input[type="checkbox"] {
    border: 1px solid #aaaaaa;
    vertical-align: -8px;
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    width: 26px;
    height: 26px;
    /*Other Browser*/
    background: #e2e2e2;
    /*For Old WebKit*/
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #e2e2e2));
    /*For Modern Browser*/
    background: linear-gradient(to bottom, #ffffff 0%, #e2e2e2 100%); }
  #formArea input[type="checkbox"]:checked {
    /*Other Browser*/
    background: #000;
    /*For Old WebKit*/
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000), color-stop(1, #000));
    /*For Modern Browser*/
    background: linear-gradient(to bottom, #000 0%, #000 100%);
    border: 1px solid #000; }
  #formArea input[type="checkbox"]:checked:before {
    position: absolute;
    left: 1px;
    top: 16px;
    display: block;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    content: "";
    width: 10px;
    height: 4px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right center; }
  #formArea input[type="checkbox"]:checked:after {
    display: block;
    position: absolute;
    left: 9px;
    top: 16px;
    content: "";
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    width: 16px;
    height: 4px;
    background: #ffffff;
    -webkit-transform: rotate(-53deg);
    -webkit-transform-origin: left center; }
  #formArea .mwform-zip-field input {
    width: inherit; }
  #formArea .mwform-tel-field input {
    margin: 0 !important;
    width: auto; }
  #formArea .mwform-radio-field {
    display: inline-block;
    margin: 0 15px 5px 0; }
    #formArea .mwform-radio-field input {
      margin: 0 15px 0 0; }
  #formArea .mwform-radio-field-text {
    margin-left: 10px; }
  #formArea input[type="file"] {
    margin-bottom: 10px; }
  #formArea .inline_wrap select {
    display: inline-block; }
  #formArea .btnArea .submitArea {
    padding-bottom: 10px; }
    #formArea .btnArea .submitArea .submit {
      color:#ffffff !important;
      background:#580808;
      margin:0 auto 40px;
      text-align:center;
      z-index:10;
      position:relative;
      min-width:360px;
      height:70px;
      line-height:50px;
      font-size:18px;
      padding:10px 30px;
      border:none;
	  box-shadow:6px 6px rgba(0,0,0,0.2);}
  #formArea .btnArea .returnArea .return {
    cursor: pointer;
    width: 360px;
    display: block;
    text-align: center;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    padding: 20px 0;
    transition: .3s;
    font-size: 14px; }
  @media screen and (max-width: 767px) {
    #formArea dl {
      display: flex;
      flex-wrap: wrap; }
      #formArea dl dt {
        flex-basis: 100%;
        padding: 5px 0 0 0;
        margin: 0 0 15px; }
      #formArea dl dd {
        flex-basis: 100%;
        margin-bottom: 15px;
        align-self: center; }
    #formArea select {
      margin-bottom: 5px; }
    #formArea .mwform-checkbox-field {
      display: block;
      width: 100%; }
    #formArea .mwform-radio-field {
      display: block;
      margin: 5px 0 10px; }
      #formArea .mwform-radio-field .mwform-radio-field-text {
        margin-right: 15px; }
      #formArea .mwform-radio-field input {
        margin: 0; }
    #formArea .btnArea {
      flex-wrap: wrap; }
      #formArea .btnArea .submitArea {
        flex-basis: 100%;
        margin: 0 0 25px; }
    #formArea .mw_wp_form_confirm .btnArea .submitArea .submit {
      margin: 0 auto; }
    #formArea .mw_wp_form_confirm .btnArea .returnArea {
      display: block; }
      #formArea .mw_wp_form_confirm .btnArea .returnArea .return {
        margin: 0; } }
