/*==================     Subscribe Form     ======================*/
.subscribe-form {
  position: relative;
  display: block;
}
.subscribe-form label {
  display: inline-block;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  border: 0px solid #ededed;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.subscribe-form label:hover {
  background: rgba(255, 255, 255, 0.8);
}
.subscribe-form label:hover input {
  color: #222;
}
.subscribe-form label.name {
  width: auto;
}
.subscribe-form input {
  outline: none;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  vertical-align: baseline;
  box-shadow: none;
  color: #fff;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 22px;
  height: 46px;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.subscribe-form a[data-type="submit"] {
  display: inline-block;
}

.subscribe-form .error, .subscribe-form .success {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 10px;
  line-height: 12px;
}
.subscribe-form .error {
  color: #f00;
  overflow: hidden;
  height: 0;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.subscribe-form label.invalid .error {
  height: 21px;
}
.subscribe-form .success {
  display: none;
  color: #0f0;
}

@media (max-width 979px) {
  .subscribe-form label.name,
  .subscribe-form label.email {
    display: block;
  }
}