
  #snackbar {
    /* display: inline-block; */
    visibility: hidden;
    min-width: 250px;
    background-color: rgb(255, 132, 0);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 8px;
    position: absolute;
    right: 10%;
    top: 70px;
    font-size: 14px;
    border-radius: 0.25rem;
    z-index: 1000;
  }
  
  #snackbar.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 {top: 0; opacity: 0;} 
    to {top: 70px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 70px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {top: 70px; opacity: 1;} 
    to {top: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {top: 70px; opacity: 1;}
    to {top: 0; opacity: 0;}
  }