#toast {
    min-width: 250px;
    margin-left: -200px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
    border-radius: 8px;
    position: fixed;
    z-index: 1;
    height: 60px;
    left: 50%;
    top: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  
  
  #toast p {
    margin-left: 20px;
    margin-right: 30px;
    color: #5c5c5c;
  }
  
  
  #toast span {
    background: transparent;
    border: none;
    cursor: pointer;
    margin: 0 1rem;
  }
  
  
  .checkicon {
    background: #2e7d32;
    display: flex;
    align-items: center;
    height: 100%;
    width: 60px;
    justify-content: center;
    border-radius: 8px 0px 0 8px;
  }
  
  
  .checkicon img {
    width: 24px;
    height: 24px;
  }
  
  
  #toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  
  @-webkit-keyframes fadein {
  
    from {
      bottom: 0;
      opacity: 0;
  }
  
    to {
      bottom: 30px;
      opacity: 1;
  }
  
  }
  
  
  @keyframes fadein {
  
    from {
      bottom: 0;
      opacity: 0;
  }
  
    to {
      bottom: 30px;
      opacity: 1;
  }
  
  }
  
  
  @-webkit-keyframes fadeout {
  
    from {
      bottom: 30px;
      opacity: 1;
  }
  
    to {
      bottom: 0;
      opacity: 0;
  }
  
  }
  
  
  @keyframes fadeout {
  
    from {
      bottom: 30px;
      opacity: 1;
  }
  
    to {
      bottom: 0;
      opacity: 0;
  }
  
  }
  