/* ----------------------------------------------
 [ TOAST ]*/
 #toasts_wrapper{
    position:fixed;
    width:400px;
    top:0;
    margin-left:calc(100vw/2);
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    z-index: 9999;
    margin-top: 20px;
    gap:10px;
 }
 .toaster{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    width:fit-content;
    padding:5px 10px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  
  .toaster.danger{
    background-color: #ffcccb;
    color: #bf0000;
    border: 1px solid #ff9c9c;
  }
  .toaster.success{
    background-color: #00ff87;
    color: #007b25;
    border: 1px solid #2ed734;
  }
  .toaster.warning{
    background-color: #ffb351;
    color: #8a0000;
    border: 1px solid #d5a24a;
  }
  .toaster.info{
    background-color: #73d8ff;
    color: #003b86;
    border: 1px solid #81c4ff;
  }
  .toaster.show{
    opacity: 1;
  }