/* Contact Form variables
========================================================*/
/* Contact Form Basic Styles 
========================================================*/
#contact-form {
  position: relative;
  margin: 4px 0 0 0;
}
#contact-form label {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 38px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: none;
  margin-bottom: 28px;
}
#contact-form label.message {
  margin-top: 32px;
  width: 100%;
  height: 166px;
}
@media (max-width: 979px) {
  #contact-form label {
    width: 100%;
  }
}
#contact-form fieldset {
  border: none;
}
/* Contact Form Placeholder Styles 
========================================================*/
#contact-form ._placeholder {
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  line-height: 32px;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  padding: 3px 21px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  cursor: text;
}
#contact-form ._placeholder.focused {
  opacity: 0.4;
  filter: alpha(opacity=40);
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 255, 0.5);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 255, 0.5);
}
#contact-form ._placeholder.hidden {
  display: none;
}
#contact-form .file ._placeholder {
  display: none;
}
/* Contact Form Input 
========================================================*/
#contact-form input[type='text'] {
  width: 100%;
  letter-spacing: 0.05em;
  line-height: 32px;
  font-size: 20px;
  font-family: "Lato", sans-serif;
  color: #fff;
  background: transparent;
  padding: 3px 21px;
  outline: none;
  height: 100%;
  border: none;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: none;
  margin: 0;
  -webkit-appearance: none;
}
/* Contact Form Textarea 
========================================================*/
#contact-form textarea {
  width: 100%;
  letter-spacing: 0.05em;
  line-height: 32px;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  background: transparent;
  padding: 3px 21px;
  outline: none;
  border: 1px solid #ffffff;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: none;
  resize: none;
  height: 100%;
  -webkit-appearance: none;
}
#contact-form .message .empty-message,
#contact-form .message .error-message {
  right: 20px;
}
/* Contact Form Error messages
========================================================*/
#contact-form .empty-message,
#contact-form .error-message {
  position: absolute;
  right: 4px;
  top: 4px;
  color: red;
  height: 0;
  overflow: hidden;
  font-size: 11px;
  line-height: 12px;
  -webkit-transition: 0.3s ease-in height;
  transition: 0.3s ease-in height;
  z-index: 99;
}
#contact-form .invalid .error-message,
#contact-form .empty .empty-message {
  height: 20px;
}


