/*newsletter form*/
#subscribe-form {
  position: relative;
}
#subscribe-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
#subscribe-form label {
  position: relative;
  /*!*/
  display: inline-block;
  min-height: 43px;
}
#subscribe-form input,
#subscribe-form textarea {
  outline: none;
  float: left;
  padding: 0 10px 0 10px;
  font-size: 15px;
  line-height: 50px;
  font-family: 'Open Sans', sans-serif;
  border: none;
  width: 380px;
  height: 50px;
  background: #fff;
  color: #3e454c;
  text-transform: uppercase;
}
.btns {display: inline-block;}
.btns a {
  margin: 0 0 0 16px;
  height: 50px;
  line-height: 50px;
}
#subscribe-form .error {
  height: 0;
  overflow: hidden;
  font: 10px/20px Arial;
  -webkit-transition: height 0.3s linear;
  -moz-transition: height 0.3s linear;
  -o-transition: height 0.3s linear;
  transition: height 0.3s linear;
  position: absolute;
  right: 3px;
  top: 0;
  color: #e74c3c;
}
#subscribe-form .success {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 50px;
  background: #fff;
  text-transform: uppercase;
  color: #e74c3c;
  top: 0;
  left: 0;
  z-index: 9;
}
#subscribe-form label.invalid .error {
  height: 19px;
}