/*==================     Subscribe Form     ======================*/
.subscribe-form {
  position: relative;
  display: inline-block; }
  .subscribe-form label {
    display: inline-block;
    position: relative;
    padding: 10px 20px 10px;
    background: #5F4C0B;
    border: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .subscribe-form label.name {
    width: 370px; }
  .subscribe-form label.email {
    width: 370px;
    margin-right: 12px; }
    @media (max-width: 979px) {
      .subscribe-form label.email {
        width: 100%;
        display: block; } }
  .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;
    font-size: 20px;
    line-height: 30px;
    height: 30px; }
  .subscribe-form a[data-type="submit"] {
    display: inline-block;
    padding: 10px 22px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    background: #fff;
    border-radius: 4px;
    color: #3b4344;
    -webkit-box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.21);
    box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.21); }
    .subscribe-form a[data-type="submit"]:hover {
      background: #3b4344;
      color: #fff;
      -webkit-box-shadow: 0px 0px 0px 0px transparent;
      -moz-box-shadow: 0px 0px 0px 0px transparent;
      box-shadow: 0px 0px 0px 0px transparent; }
  @media (max-width: 979px) {
    .subscribe-form {
      display: block;
      text-align: center; } }

.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;
    width: 100%; }
  .subscribe-form * + label,
  .subscribe-form * + a[data-type='submit'] {
    margin-top: 10px; } }
