#toast-it {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 15px 20px;
  border: 1px solid #ff2e5152;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 11px -2px #FF2E52; 
box-shadow: 0px 0px 11px -2px #FF2E52;
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  align-content: center;
  text-transform: uppercase;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  animation: toastIn 0.6s forwards;
  z-index: 9999;
}

.logo_notif{
  width: 35px;
  height: auto;

}

#toast-it .toast-btn {
  background: #ff2e52;
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}
#toast-it .toast-btn:hover {
  background: #e22444;
}

#toast-it .toast-close {
  margin-left: auto;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: color 0.3s;
  position: relative;
  top: 5px;
}
#toast-it .toast-close:hover {
  color: #ff2e52;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
  }
}
