#TOAST-MSG-BOX{
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
  }
  .MSG-snackbar-simple{
    background: #5f5d5d;
    color: #f0f0f0;
    box-shadow: 0px 0px 10px darkslategrey;
  }
  .MSG-snackbar-warn{
    background: #ffa600;
    color: #000000;
    box-shadow: 0px 0px 10px darkslategrey;
  }
  .MSG-snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    text-align: center;
    border-radius: 2px;
    padding: 15px 30px;
    z-index: 1000;
    left: 50px;
    top: 50px;
    font-size: 15px;
    margin: 5px 0;
  }
  
  .MSG-snackbar.show {
    visibility: visible;
    -webkit-animation: fadeinMSGsnackbar 0.5s, fadeoutMSGsnackbar 0.5s 2.5s;
    animation: fadeinMSGsnackbar 0.5s, fadeoutMSGsnackbar 0.5s 2.5s;
  }
  
  @-webkit-keyframes fadeinMSGsnackbar {
    from {top: 0; opacity: 0;} 
    to {top: 30px; opacity: 1;}
  }
  
  @keyframes fadeinMSGsnackbar {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeoutMSGsnackbar {
    from {top: 30px; opacity: 1;} 
    to {top: 0; opacity: 0;}
  }
  
  @keyframes fadeoutMSGsnackbar {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
  }