.toast {
  position: fixed;
  top: 115px;
  right: 13px;
  max-width: 410px;
  background: #fff;
  padding: 14px 12px 14px 7px;
  margin-left: 13px;
  border-left: 8px 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-between;
    align-items: center;
}
  .toast-icon {
    padding: 0.35rem 0.5rem;
  }
  .toast-message {
    font-size: 14px;
    line-height: 20px;
    color: #60697B;
    padding: .15rem .5rem;
    max-width: 310px;
  }
  .toast-icon img{
    height: 24px;
    width: 24px;
  }
  
  /* success toast */
  .toast.toast-success{
    border-color: #4BB543;
  }
  .toast.toast-success .toast-progress{
    background-color:  #4BB543;
  }
  .toast.toast-success .toast-icon>span,
  .toast.toast-success .toast-icon>i{
    color: #4BB543;
  }
  
  /* danger toast */
  .toast.toast-danger{
    border-color: #FF3F3F;
  }
  .toast.toast-danger .toast-progress{
    background-color:  #FF3F3F;
  }
  .toast.toast-danger .toast-icon>span,
  .toast.toast-danger .toast-icon>i{
    color: #FF3F3F;
  }
  
  /* info toast */
  .toast.toast-info{
    border-color: #389FE4;
  }
  .toast.toast-info .toast-progress{
    background-color:  #389FE4;
  }
  .toast.toast-info .toast-icon>span,
  .toast.toast-info .toast-icon>i{
    color: #389FE4;
  }
  
  /* warning toast */
  .toast.toast-warning{
    border-color: #FFCC00;
  }
  .toast.toast-warning .toast-progress{
    background-color:  #FFCC00;
  }
  .toast.toast-warning .toast-icon>span,
  .toast.toast-warning .toast-icon>i{
    color: #FFCC00;
  }
  .toast button.toast-close-btn:hover{
    box-shadow: none !important;
  }


