.toast-container {
    position: fixed;
    z-index: 3000;
    bottom: -140px;
    width: 90%;
    height: 100px;
    max-width: 720px;
    display: flex;
    align-items: center;
    background: rgba(190, 14, 14, 0.95);
    color: #eee;
    padding: 0 16px;
    border-radius: 24px;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.2);
    left: 50%;
    transform: translateX(-50%);
    transition: all 1800ms ease;
  }
  
  .toast-container.active {
    bottom: 20px;
  }
  
  .toast-container h3 {
    font-weight: 800;
    line-height: 1.5;
    font-size: 16px;
  }
  
  .toast-container .text-content1 {
    padding: 0 24px;
    padding-right: 40px;
  }

  .toast-container .text-content2 {
    padding: 0 24px;
    padding-right: 40px;
  }
  
  .toast-container .image img {
    width: 48px;
    height: 48px;
  }
  
  .toast-container .close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
  }