.toast-notification-container {
    position: fixed;
    bottom: -200px;
    padding: 10px;
    background-color: #757575;
    left: 15px;
    line-height: 1.5;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3000; }
    .toast-notification-container.show {
      bottom: 15px; }
    .toast-notification-container.error {
      background-color: #b66666; }
    .toast-notification-container.success {
      background-color: #149075; }
    .toast-notification-container.warning {
      background-color: #757575; }
    .toast-notification-container.info {
      background-color: #1AA2B8; }
    .toast-notification-container .notification-icon img {
      height: 20px;
      width: 20px; }
    .toast-notification-container .notification-icon, .toast-notification-container .notification-message {
      display: table-cell;
      vertical-align: middle;
      padding: 10px; }
    .toast-notification-container .notification-message p {
      color: #FFF;
      font-family: "Poppins";
      font-size: 14px; }