@keyframes noti_fadein {
  from {
    opacity: 0;
    margin-top: -10px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

/* Firefox < 16 */
@-moz-keyframes noti_fadein {
  from {
    opacity: 0;
    margin-top: -10px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes noti_fadein {
  from {
    opacity: 0;
    margin-top: -10px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

/* Internet Explorer */
@-ms-keyframes noti_fadein {
  from {
    opacity: 0;
    margin-top: -10px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

/* Opera < 12.1 */
@-o-keyframes noti_fadein {
  from {
    opacity: 0;
    margin-top: -10px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

.c9-noti {
  position: fixed;
  top: 60px;
  right: 10px;
  min-width: 150px;
  text-align: center;
  box-shadow: 2px 2px 5px 0 #333;
  z-index: 10000;

  -webkit-animation: noti_fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: noti_fadein 0.5s; /* Firefox < 16 */
  -ms-animation: noti_fadein 0.5s; /* Internet Explorer */
  -o-animation: noti_fadein 0.5s; /* Opera < 12.1 */
  animation: noti_fadein 0.5s;
}

@keyframes noti_fadeout {
  from {
    opacity: 1;
    margin-top: -0;
  }
  to {
    opacity: 0;
    margin-top: -10px;
  }
}

/* Firefox < 16 */
@-moz-keyframes noti_fadeout {
  from {
    opacity: 1;
    margin-top: -0;
  }
  to {
    opacity: 0;
    margin-top: -10px;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes noti_fadeout {
  from {
    opacity: 1;
    margin-top: -0;
  }
  to {
    opacity: 0;
    margin-top: -10px;
  }
}

/* Internet Explorer */
@-ms-keyframes noti_fadeout {
  from {
    opacity: 1;
    margin-top: -0;
  }
  to {
    opacity: 0;
    margin-top: -10px;
  }
}

/* Opera < 12.1 */
@-o-keyframes noti_fadeout {
  from {
    opacity: 1;
    margin-top: -0;
  }
  to {
    opacity: 0;
    margin-top: -10px;
  }
}

.c9-noti.c9-noti-out {
  -webkit-animation: noti_fadeout 0.5s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: noti_fadeout 0.5s; /* Firefox < 16 */
  -ms-animation: noti_fadeout 0.5s; /* Internet Explorer */
  -o-animation: noti_fadeout 0.5s; /* Opera < 12.1 */
  animation: noti_fadeout 0.5s;
}
