   .toast-notification {
    position: fixed;
    top: 25px;
    right: 30px;
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
   /* box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);*/
    box-shadow: -8px 0px 20px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    z-index: 99999;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  }
  
  .toast-notification.active {
    transform: translateX(0%);
  }
  
  .toast-notification .toast-notification-content {
    display: flex;
    align-items: center;
  }
  
  .toast-notification-content .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 35px;
    background-color: #6c757d;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
  }

  .toast-notification-content .danger {
    background-color: #ff3e1d;
  }
  .toast-notification-content .success {
    background-color: #71dd37;
  }
  .toast-notification-content .warning {
    background-color: #ffab00;
  }
  .toast-notification-content .primary {
    background-color: #696cff;
  }
  .toast-notification-content .info {
    background-color: #03c3ec;
  }  
  .toast-notification-content .dafault {
    background-color: #8592a3;
  }


  .toast-notification-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
    padding: 0;
  }
  
  .message .text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
  }
  
  .message .text.text-1 {
    font-weight: 600;
    color: #333;
  }
  
  .toast-notification .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
  }
  
  .toast-notification .close:hover {
    opacity: 1;
  }
  
  .toast-notification .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
  
  }
  
  .toast-notification .progress:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }

  .toast-notification .progress.danger:before {
    background-color: #ff3e1d;
  }
  .toast-notification .progress.success:before {
    background-color: #71dd37;
  }
  .toast-notification .progress.warning:before {
    background-color: #ffab00;
  }
  .toast-notification .progress.primary:before {
    background-color: #696cff;
  }
  .toast-notification .progress.info:before {
    background-color: #03c3ec;
  }  
  .toast-notification .progress.dafault:before {
    background-color: #8592a3;
  }
  
  
  .progress.active:before {
    animation: progress 5s linear forwards;
  }
  
  @keyframes progress {
    100% {
      right: 100%;
    }
  }
  
  button {
    padding: 12px 20px;
    font-size: 20px;
    outline: none;
    border: none;
    background-color: #4070f4;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  button:hover {
    background-color: #0e4bf1;
  }
  
  .toast-notification.active ~ button {
    pointer-events: none;
  }