/* Special Alert */

/* Mobile & up */
.special-alert {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 100000;
  transition: opacity 0.5s ease;
}
  .show-special-alert .special-alert {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.5s ease;
  }

  .special-alert .shader {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 248, 0.65);
    cursor: pointer;
    z-index: 100001;
    transition: opacity 0.5s ease;
  }

  .special-alert .alert {
    max-width: 610px;
    min-height: 300px;
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    /*border-radius: 6px;*/
    color: #333;
    background-color: #fffff8;
    z-index: 100002;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  }
    .show-special-alert .special-alert .alert {
      transition: all 0.4s ease;
      top: 45%;
    }

    .special-alert .alert .closer {
      margin: 0;
      padding: 5px;
      position: absolute;
      top: 0px;
      right: 0;
      background-color: transparent;
      border: 0;
      color: #fff;
      cursor: pointer;
    }
      .special-alert .alert .closer:hover {
        color: #333;
      }

      .special-alert .alert .closer .fa {
        font-size: 30px;
      }

  .special-alert .alert .teaser {
    margin-bottom: 40px;
    cursor: default;
  }
    .special-alert .alert.has-signup-form .teaser {
      margin-bottom: 20px;
    }

    .special-alert .alert .newsletter-content {
      padding: 25px 30px 18px;
    }

    .special-alert .alert .title, .special-alert .alert .teaser h1, .special-alert .alert .teaser h2, .special-alert .alert .teaser h3 {
      color: #333;
      font-family: "Oswald", sans-serif;
      font-size: 1.375rem;
      line-height: 1.1;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 25px;
    }
    .special-alert .alert .teaser h3 {
      font-size: 1.25rem;
    }

    .special-alert .alert .teaser p {
      font-size: 0.875rem;
      line-height: 1.4;
      margin-bottom: 12px;
    }

  .special-alert .newsletter-signup {
  }
    .special-alert .newsletter-signup .email {
      margin-bottom: 15px;
      color: #333;
      font-family: "Lato", sans-serif;
      font-size: 1rem;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
      text-align: left;
      padding: 0 5px;
    }
    .special-alert .newsletter-signup .email::placeholder {
      color: #999;
      font-family: "Lato", sans-serif;
      font-size: 1rem;
      text-align: left;
    }
      .special-alert .newsletter-signup .email.err {
        border-color: #f00 !important;
      }

    .special-alert .newsletter-signup p {
      margin: 14px 0 18px;
    }
    .special-alert #newsletter-finished p, .special-alert #newsletter-error p {
      color: #333;
      font-family: "Lato", sans-serif;
      font-size: 1rem;
      text-align: left;
    }

    .special-alert .newsletter-signup .checkbox-label {
      color: #333;
      font-size: 1rem !important;
      vertical-align: middle;
      margin: 5px 0 0 2px;
    }
    .special-alert .newsletter-signup input {
      vertical-align: middle;
    }
    .special-alert .newsletter-signup .checkbox-label .small {
      font-size: 0.75rem;
    }
    .special-alert .newsletter-signup label.err {
      color: #f00 !important;
    }

    .special-alert .newsletter-signup .field-555 {
      display: none;
    }

    .special-alert .link-close {
      text-align: center;
      margin-top: 15px;
    }

/* Tablet & down */
@media only screen and (max-width: 64.063em) {
  .special-alert .alert {
    width: 70%;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  }
    .special-alert .alert .teaser {
      margin-bottom: 10px;
    }

  .special-alert .newsletter-signup {
    display: block;
  }
    .special-alert .newsletter-signup .email {
      max-width: 100%;
    }
    .special-alert .newsletter-signup .submit {
      width: 100%;
      margin: 10px 0;
    }

  .special-alert .alert .closer .fa {
    font-size: 24px;
  }
}

@media only screen and (max-width: 40.063em) {
  .special-alert .alert {
    top: 10px;
    width: 85%;
    height: auto;
    transform: translate(-50%, 0);
  }
    .show-special-alert .special-alert .alert {
      top: 10px;
    }
}