
.toasting__space {
    position: fixed;
    overflow: hidden;
    height: 100vh;
    right: 0;
    bottom: 0;
    top: 0;
    width: 40ch;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
  }
  
  .toastNode {
    background-color: #106bb1;
    color: #fff;
    min-height: 1rem;
    padding: 2ch;
    margin-bottom: 1ch;
    animation: animatebottom 400ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  
  .toast__message {
    margin: 0;
  }
  
  .animate-bottom {
    position: relative;
    animation: animatebottom 0.4s;
  }
  
  @keyframes animatebottom {
    from {
      transform: translateY(-150%);
      opacity: 0;
    } to {
      transform: translateY(0%);
      opacity: 1;
    }
  }
  
  .animate-right { 
    position: relative;
    animation: animateright 0.4s;
  }
  
  @keyframes animateright {
    from {
      right: 0;
      opacity: 1;
    } to {
      right: -300px;
      opacity: 0;
    }
  }
  