.toast__container {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: fixed;
    left: 0%;
    bottom: 10px;
    text-align: center;
    z-index: 99999;
  }
  
  .toast__cell {
    display: inline-block;
  }
  
  .add-margin {
    margin-top: 20px;
  }
  
  .toast__svg {
    fill: #fff;
  }
  
  .toast {
    display: none;
    text-align: left;
    padding: 16px 0;
    background-color: #fff;
    border-radius: 4px;
    max-width: 500px;
    min-width: 290px;
    top: 0px;
    left: 10px;
    position: relative;
    box-shadow: 1px 5px 20px -3px rgba(0, 0, 0, 0.2);
  }
  
  .toast:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  
  .toast__icon {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    width: 14px;
    height: 14px;
    padding: 7px;
    border-radius: 50%;
    display: inline-block;
  }
  
  .toast__type {
    color: #3e3e3e;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 4px;
  }
  
  .toast__message {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    color: #676767;
  }
  
  .toast__content {
    padding-left: 70px;
    padding-right: 60px;
  }
  
  .toast__close {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 14px;
    cursor: pointer;
    height: 14px;
    fill: #cccccc;
    transform: translateY(-50%);
  }
  
  .toast--green .toast__icon {
    background-color: #319c73;
  }
  
  .toast--green:before {
    background-color: #319c73;
  }
  
  .toast--blue .toast__icon {
    background-color: #22a5e6;
  }
  
  .toast--blue:before {
    background-color: #22a5e6;
  }
  
  .toast--red .toast__icon {
    background-color: #ff3e00;
  }
  
  .toast--red:before {
    background-color: #ff3e00;
  }
  
  .toast--yellow .toast__icon {
    background-color: #efba1c;
  }
  
  .toast--yellow:before {
    background-color: #efba1c;
  }