a img {border: 0}body,textarea{margin:0 auto;-webkit-text-size-adjust:none}
/* 
 * IMPORTANT:
 * Do not rename any of the animations, they are used by the notification
 * library to detect end of the animatino via animationend event.
 */

@-webkit-keyframes notification-slidein-ltr {
  from {
    -webkit-transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(0);
  }
}

@keyframes notification-slidein-ltr {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@-webkit-keyframes notification-slidein-rtl {
  from {
    -webkit-transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0);
  }
}

@keyframes notification-slidein-rtl {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@-webkit-keyframes notification-renotify {
  50% {
    opacity: 0;
  }
}

@keyframes notification-renotify {
  50% {
    opacity: 0;
  }
}

@-webkit-keyframes notification-hide {
  to {
    height: 0;
    opacity: 0;
  }
}

@keyframes notification-hide {
  to {
    height: 0;
    opacity: 0;
    margin: 0;
  }
}