/*==================     Subscribe Form     ======================*/
.subscribe-form {
  position: relative;
  display: block; }
  .subscribe-form label {
    display: inline-block;
    position: relative;
    padding: 8px 10px 8px;
    width: 220px;
    background: white;
    border: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .subscribe-form input {
    outline: none;
    background-color: transparent;
    border: none;
    -webkit-appearance: none;
    border-radius: 0;
    vertical-align: baseline;
    box-shadow: none;
    color: #26303e;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 22px;
    height: 22px; }
  .subscribe-form a[data-type="submit"] {
    display: inline-block;
    line-height: 38px;
    font-size: 25px;
    color: #cc0a2c; }
    .subscribe-form a[data-type="submit"]:hover {
      color: #26303e; }

.error {
  position: absolute;
  bottom: -18px;
  right: 5px;
  font-size: 10px;
  color: #f00;
  overflow: hidden;
  height: 0px;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease; }

label.invalid .error {
  height: 21px; }

.success {
  display: none;
  position: absolute;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: -20px;
  font-size: 14px;
  text-align: center;
  color: #0da336; }

@media (min-width: 768px) and (max-width: 979px) {
  .subscribe-form label {
    width: 200px; } }
