/* TOAST NOTIFICATION */
.toast-notification {
  font-family: var(--g-sans-flex);
  font-weight: var(--fw-medium);
  font-size: 16px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/*  */
