.notification-container {
    box-sizing: border-box;
    position: fixed;
    z-index: 999999;
    transition: opacity 0.5s, transform 0.5s;
    animation: slide-out 1s ease-in-out forwards;
  }
  
  .top-right {
    top: 1.5rem;
    right: 1.2rem;
    transition: transform 0.2s cubic-bezier(1,0,0,1);
    animation: toast-in-right .2s  cubic-bezier(1,0,0,1);
  }

  .bottom-right {
    bottom: 1.5rem;
    right: 1.2rem;
    transition: transform 0.3s ease-in-out;
    animation: toast-in-right 0.4s;
  }
  
  .top-left {
    top: 1.5rem;
    left: 1.2rem;
    transition: transform 0.3s ease-in;
    animation: toast-in-left 0.4s;
  }
  
  .bottom-left {
    bottom: 1.5rem;
    left: 1.2rem;
    transition: transform 0.3s ease-in;
    animation: toast-in-left 0.4s;
  }
  
  .notification {
    transition: 0.3s ease;
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    align-items: center;
    opacity: 1;
  }
  

  
  .notification:hover {
    opacity: 0.9;
    cursor: pointer;
  }
  
  
  @keyframes toast-in-right {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes toast-in-left {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }



  .toast-wrap {
    padding: 1.6rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    width: 40rem;
    gap: 1rem;
    transition: 0.3s ease;
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    align-items: center;
    opacity: 1;

  
  
    .img-box {
      width: 2.5rem;
      height: 2.5rem;
      // transform: translateY(.2rem);
      .img {
        object-fit: contain;
        width: 100%;
        height: 100%;
      }
    }
  
    .text {
      font-size: 1.3rem;
      margin-right: auto;
      
      color: #020202;
    }
  
    .cancel {
      border-radius: 50%;
      width: 2.5rem;
      height: 2.5rem;
      display: grid;
      place-items: center;
  
      svg{
          width: 1rem;
          height: 1rem;
      }
    }
  }
  
  .toast-wrap__error {
    background-color: #fff5f5;
    border: 0.15rem solid #ffdfdd;
  
    .cancel {
      background-color: #ffdfdd;
      svg {
        fill: #ff0f00;
      }
    }
  }
  
  .toast-wrap__success {
      background: #D1F5D7 !important;
    border: .15rem solid #B3EFBC !important;
  
    .cancel {
      background-color: #B3EFBC;
      svg {
        fill: #1ACE37;
      }
    }
  }
  
  .toast-wrap__info {
      background: #E9F5FF !important;
    border: .15rem solid #B9DEFE !important;
    
  
    .cancel {
      background-color: #B9DEFE;
      svg {
        fill: #476885;
      }
    }
  }
  
  .toast-wrap__warning {
      background: #FFF6ED !important;
    border: .15rem solid #FFE6CD !important;
  
    .cancel {
      background-color: #FFE6CD;
      svg {
        fill: #EA872D;
      }
    }
  }


  .raven-toast-progress {
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .raven-toast-show {
    display: none;
    visibility: hidden;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  
  @keyframes raven-toast-progress-animation {
    0% {
      width: 100%;
    }
  
    100% {
      width: 0%;
    }
  }

  .slide-out {
    animation: slideOut 30s forwards;
  }


