.notification-bar {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transition-property: top,bottom;
  -webkit-transition-duration: 0.5s;
  background: #54667A;
  color: #FFF;
  height: 100px;
  position: fixed;
  width: 100%;
  bottom: -150px;
  left: 0;
  z-index: 3000;
  border-top: 1px solid #ccc;
  box-shadow: 0 0 25px #cecece;
}

.notification-bar .notification-bar-wrapper {
  width: 950px;
  margin: 0 auto;
  display: table;
  height: 100%;
  position: relative;
}

.notification-bar .notification-bar-wrapper .prompt,.notification-bar .notification-bar-wrapper .offer {
  display: table-cell;
  vertical-align: middle;
}

.notification-bar .notification-bar-wrapper .prompt {
  width: 60%;
}

.notification-bar .notification-bar-wrapper .offer {
  width: 40%;
}

.notification-bar a {
  text-decoration: none;
}

.notification-bar .prompt {
  font-size: 90%;
  line-height: 150%;
}

.notification-bar .quote {
  font-size: 115%;
}

.notification-bar .quote em {
  font-size: 80%;
}


.notification-bar .optin-promo-headline {
  font-family: 'Roboto',helvetica,arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 110%;
  margin-bottom: 2px;
}

.notification-bar .optin-promo-text {
  font-size: 100%;
}

.notification-bar input[type=email] {
  margin-left: 30px;
  height: 30px;
  border: 1px solid #ddd;
  padding: 0 6px;
  position: relative;
  top: -1px;
}

.notification-bar input[type=submit] {
  background: #fff;
  padding: 3px 10px;
  margin-left: 0;
  outline: none;
}

@-webkit-keyframes bounceInUp {
  from,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
  }

  from {
    bottom: -150px;
    opacity: 0;
    -webkit-transform: translate3d(0,3000px,0);
    transform: translate3d(0,3000px,0);
  }

  60% {
    bottom: 0;
    opacity: 1;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
  }

  75% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes bounceInUp {
  from,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0,3000px,0);
    transform: translate3d(0,3000px,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
  }

  75% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

.expanded {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
  bottom: 0!important;
}

.notification-bar a {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.slider-header {
  float: left;
  font-family: 'Roboto',helvetica,arial;
  font-weight: 100;
  font-size: 25px;
  line-height: 1.45;
  color: #FFF;
}

.slider-header span {
  font-weight: 700;
}

.slider-cta {
  order: 2;
  flex-basis: 250px;
}

.slider-cta-btn {
  color: #fff !important;
  background-color: #E42417;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 3px;
  border: none;
  font-weight: 500;
  cursor: pointer;
}

.slider-image {
  width: 185px;
  position: relative;
  top: -65px;
  margin-right: 15px;
  margin-bottom: -65px;
  float: left;
}

@media screen and (max-width: 33.9em) {
  .notification-bar .notification-bar-wrapper {
    width: 100%;
  }
  .slider-cta { display: none; flex-basis: 0; }
  .slider-header {
    width: 100%;
    padding: 6px;
    text-align: center;
    font-size: 15px;
    line-height: 1.25;
  }
}
