/* CONTACT FORM CSS */

/* Contact Us Page-Wide Styling */

.contact-us {
  padding: 0;
  margin: 0;
}

.contact-us .wrapper {
  padding-top: 100px;
}

/* Navigation Styling */

.contact-us #menu-default {
  box-shadow: none;
  position: fixed;
  width: 100%;
  z-index: 800;
  margin-bottom: 20px;
}

.contact-us #menu-default.sticky-nav {
  background-color: #2b3e50;
  padding-top: 0;
  height: 45px;
}

/* Navigation Links */

.contact-us #menu-default .contact-link a {
    padding-bottom: 2px;
    border-bottom: solid 3px #06C25F;
}

/* Form Styling */

#contact-form {
  font-weight: bold;
  font-size: 12px;
  line-height: 30px;
  color: rgb(56, 56, 56);
  background: #06C25F;
  background: #ffffff;
  padding: 5px 25px;
  margin: 40px auto;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  max-width: 40%;
}

/* Form Header */

#contact-form h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin: 20px 0px 20px 0px;
  padding-left: 5px;
}

/* Form Description */

#contact-form p:nth-of-type(1) {
  padding-left: 5px;
  padding-bottom: 10px;
  font-weight: 400;
}

/* Form Fields */

#contact-form fieldset {
  border: medium none;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

/* Form Input Boxes */

#contact-form .form-field {
  font: 400 12px/16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  line-height: 1.5;
}

/* Input Hover and Focus Styling */

#contact-form .form-field:focus {
  outline: 0;
  border: 1px solid #aaa;
}

#contact-form .form-field:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

/* Form Select Dropdowns */

#contact-form select {
  color: rgb(0, 0, 0);
  font-size: 1.4rem;
  font-weight: 300;
  padding-left: 6px !important;
}

/* Form Text Area */

#contact-form textarea {
  height: 100px;
  max-width: 100%;
}

/* Form Submit Button */

#contact-form input[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background:#3C4858;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

/* Submit Button Hover, Active and Disabled Styling */

#contact-form input[type="submit"]:hover {
  background: #43A047;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact-form input[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#submit-field .disable-button {
  background: gray !important;
  cursor: default !important;
}

/* Form Validation Styling */

#contact-form .invalid-text {
  width: 100%;
  margin-top: .25rem;
  color: #dc3545;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

#contact-form .invalid-border {
  border-color: #dc3545;
}

/* Responsive Form Styling */

@media screen and (max-width: 768px) {
  #contact {
    max-width: 80%;
  }
}

/* Form Submission Animation */

.contact-container.ng-hide-add {
  -webkit-transition: 1s ease-in-out opacity;
  -moz-transition: 1s ease-in-out opacity;
  -ms-transition: 1s ease-in-out opacity;
  -o-transition: 1s ease-in-out opacity;
  transition: 0.75s ease-in-out opacity;
  opacity: 1;
}

.contact-container.ng-hide {
  opacity: 0;
}

/* Submission Screen Animation */

.submission-screen.ng-hide-remove  {
  -webkit-transition: 1s ease-in-out opacity;
  -moz-transition: 1s ease-in-out opacity;
  -ms-transition: 1s ease-in-out opacity;
  -o-transition: 1s ease-in-out opacity;
  transition: 0.75s ease-in-out opacity;
  opacity: 1;
  position: absolute;
}

.submission-screen.ng-hide {
  opacity: 0;
}

/* Submission Screen Styling */

.submission-screen {
  height: 67vh;
  margin: 0 auto;
  text-align: center;
}

.submission-screen h2 {
  margin-top: 150px;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

/* TEMPORARY */

.contact-header {
  text-align: center;
  margin: 80px 0;
}

.contact-paragraph {
  text-align: center;
  font-size: 2rem;
  height: 200px;
  line-height: 150%;
  margin-bottom: 20px;
}