.snacksuccess {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: green;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 2000;
    left: 50%;
    top: 30px;
    font-size: 17px;
}
.snacksall {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: green;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 2000;
    left: 50%;
    top: 100px;
    font-size: 17px;
}
.snackdanger {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: red;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 2000;
    left: 50%;
    top: 30px;
    font-size: 17px;
}
.snackdall {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: red;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 2000;
    left: 50%;
    top: 30px;
    font-size: 17px;
}

    .snacksuccess.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }
.snacksall.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
.snackdanger.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
.snackdall.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: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}


/*
.toast {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 300px;
    background: #fff;
    padding: 0.5em 0.35em;
    border-left: 4px solid #b7b7b7;
    border-radius: 4px;
    box-shadow: -1px 1px 10px #00000057;
    z-index: 1023;
    animation: leftToRight .5s ease-in-out forwards;
    transform: translateX(110%);
  }
  .toast.closing{
    animation: RightToLeft .5s ease-in-out forwards;
  }
  .toast-progress {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #b7b7b7;
    animation: Toastprogress 3s ease-in-out forwards;
  }
  @keyframes leftToRight {
    0%{
      transform: translateX(110%);
    }
    75%{
      transform: translateX(-10%);
    }
    100%{
      transform: translateX(0%);
    }
  }
  @keyframes RightToLeft {
    0%{
      transform: translateX(0%);
    }
    25%{
      transform: translateX(-10%);
    }
    100%{
      transform: translateX(110%);
    }
  }
  @keyframes Toastprogress {
    0%{
      width: 100%;
    }
    100%{
      width: 0%;
    }
  }
  button.toast-close-btn {
    outline: none;
    background: none;
    border: none;
    float: right;
    cursor: pointer;
  }
  button.toast-close-btn>span,
  button.toast-close-btn>i{
    font-size:1.2rem;
    color:#747474;
    font-weight: 500;
  }
  button.toast-close-btn:hover>span,
  button.toast-close-btn:hover>i{
    color:#585858;
  }
  .toast-content-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: start;
  }
  .toast-icon {
    padding: 0.35rem 0.5rem;
  }
  .toast-message {
    font-size: .9rem;
    color: #424242;
    padding: 0.15rem 0.5rem;
  }
  
  .toast.toast-success{
    border-color: #03e05f;
  }
  .toast.toast-success .toast-progress{
    background-color:  #088d3f;
  }
  .toast.toast-success .toast-icon>span,
  .toast.toast-success .toast-icon>i{
    color: #26c468;
  }
  
  .toast.toast-danger{
    border-color: #ff3f3f;
  }
  .toast.toast-danger .toast-progress{
    background-color:  #d63030;
  }
  .toast.toast-danger .toast-icon>span,
  .toast.toast-danger .toast-icon>i{
    color: #ff3f3f;
  }
  
  .toast.toast-info{
    border-color: #5fbdfc;
  }
  .toast.toast-info .toast-progress{
    background-color:  #4b9fd8;
  }
  .toast.toast-info .toast-icon>span,
  .toast.toast-info .toast-icon>i{
    color: #5fbdfc;
  }
  
  .toast.toast-warning{
    border-color: #c99e25;
  }
  .toast.toast-warning .toast-progress{
    background-color:  #bb9223;
  }
  .toast.toast-warning .toast-icon>span,
  .toast.toast-warning .toast-icon>i{
    color: #c99e25;
  }
    */
