/*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;
  width: calc(100% - 140px);
  float: left;
}
#subscribe-form input,
#subscribe-form textarea {
  outline: none;
  float: left;
  padding: 0 10px 0 10px;
  font-weight: 400;
  width: 100%;
  color: #9eb2c0;
  display: inline-block;
  height: 35px;
  background-color: #fff;
  -webkit-box-shadow: inset 1px 1px 5px rgba(193,207,217,.35);
  -moz-box-shadow: inset 1px 1px 5px rgba(193,207,217,.35);
  box-shadow: inset 1px 1px 5px rgba(193,207,217,.35);
  border: solid 1px #dae4eb;
}
.btns {display: inline-block;}
.btns a {
  margin: 0 0 0 15px;
  height: 35px;
  padding: 0 25px;
  line-height: 35px;
  color: #fff;
  text-transform: uppercase;
  width: 120px;
  background: #f97e76;
}
.btns a:hover {
  background: #2e3641;
}
#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: 30px;
  color: #e74c3c;
}
#subscribe-form .success {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 50px;
  background: #303334;
  color: #e74c3c;
  top: 0;
  left: 0;
  z-index: 9;
}
#subscribe-form label.invalid .error {
  height: 19px;
}
@media only screen and (max-width: 1199px) {
  #subscribe-form input {
  }
}