.toastify {
     max-width: 360px !important;
}

.toast {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: realtive;
    min-width: 353px;
    font-size: 14px;
    padding: 15px 20px;

    .text {
     overflow-wrap: break-word;
    }

     img {
          width : 20px;
          height : 20px;
     }

     .toast-body {
          .title {
               font-weight: bold
          }
          
          width: 85%;
          display: flex;
          flex-direction: column;
          gap: 1rem
     }

     i {
          position: absolute;
          right: 2rem
     }

     pre {
          width: auto;
     }
}