/* Contact Form variables
========================================================*/
/* Contact Form Basic Styles 
========================================================*/
#contact-form {
  position: relative;
  margin-top: 27px;
  margin-bottom: 0;
}
#contact-form label {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 47px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: none;
  margin-bottom: 25px;
}
#contact-form label.message {
  width: 100%;
  height: 167px;
}
@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: 20px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: #b8c5d3;
  padding: 14px 14px;
  -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%;
  line-height: 20px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: #b8c5d3;
  background: #ffffff;
  padding: 11px 13px;
  outline: none;
  height: 100%;
  border: 1px solid #e3ecf5;
  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%;
  line-height: 20px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: #b8c5d3;
  background: #ffffff;
  padding: 14px 14px;
  outline: none;
  border: 1px solid #e3ecf5;
  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 .error-message {
  right: 20px;
}
#contact-form .message .empty-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;
}
/* Contact Form Buttons
========================================================*/
.contact-form-buttons {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 70px;
}
#contact-form .btn-big {
  border: 1px solid #9a9898;
  margin-right: 18px;
}
@media (max-width: 767px) {
  #contact-form .btn-big {
    margin-top: 15px;
  }
}
