/*========================================================
                      Contact Form
=========================================================*/
/* Contact Form Basic Styles
========================================================*/
#contact-form {
  position: relative;
}
#contact-form label {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  letter-spacing: normal;
  margin: 0 0 8px;
  width: 100%;
}
#contact-form label.message {
  max-width: 100%;
  width: 100%;
  margin: 0 0 25px;
}
#contact-form fieldset {
  border: none;
}
/* Contact Form Placeholder Styles
========================================================*/
#contact-form ._placeholder {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: 400 14px 'Roboto Condensed', sans-serif;
  line-height: 20px;
  padding: 15.5px 20px 15.5px;
  color: 'Roboto Condensed', sans-serif;
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border-radius: 0;
  cursor: text;
}
#contact-form ._placeholder.focused {
  opacity: 0.4;
  
}
.lt-ie9 #contact-form ._placeholder.focused {
  filter: alpha(opacity=40);
}
#contact-form ._placeholder.hidden,
#contact-form .file ._placeholder {
  display: none;
}
/* Contact Form Input
========================================================*/
#contact-form input[type='text'] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: 400 14px 'Roboto Condensed', sans-serif;
  line-height: 20px;
  padding: 15.5px 20px 15.5px;
  color: 'Roboto Condensed', sans-serif;
  color:#00bff3;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  width: 100%;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  height: 51px;
  margin: 0;
}

#contact-form input[type='email'] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: 400 14px 'Roboto Condensed', sans-serif;
  line-height: 20px;
  padding: 15.5px 20px 15.5px;
  color: 'Roboto Condensed', sans-serif;
  color:#00bff3;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  width: 100%;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  height: 51px;
  margin: 0;
}
#contact-form input[type='number'] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: 400 14px 'Roboto Condensed', sans-serif;
  line-height: 20px;
  padding: 15.5px 20px 15.5px;
  color: 'Roboto Condensed', sans-serif;
  color:#00bff3;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  width: 100%;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  height: 51px;
  margin: 0;
}
/* Contact Form Buttons
========================================================*/
/* Contact Form Textarea 
========================================================*/
#contact-form textarea {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: 400 14px 'Roboto Condensed', sans-serif;
  line-height: 20px;
  padding: 15.5px 20px 15.5px;
  color: 'Roboto Condensed', sans-serif;
  color:#00bff3;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  width: 100%;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  resize: none;
  height: 228px;
  overflow: auto;
}
/* Contact Form Error messages
========================================================*/
#contact-form .empty-message,
#contact-form .error-message {
  -moz-transition: 0.3s ease-in height;
  -o-transition: 0.3s ease-in height;
  -webkit-transition: 0.3s ease-in height;
  transition: 0.3s ease-in height;
  position: absolute;
  right: 3px;
  top: 2px;
  color: red;
  height: 0;
  overflow: hidden;
  font-size: 11px;
  z-index: 99;
}
#contact-form .invalid .error-message,
#contact-form .empty .empty-message {
  height: 14px;
  line-height: 14px;
}

/* Contact Form Close icon
========================================================*/
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
