#notification-popup-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 300px;
}
#notification-popup-container .notification-popup-wrapper {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  gap: 10px;
}
#notification-popup-container .notification-popup-wrapper .notification {
  background-color: black;
  color: white;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  position: relative;
}
#notification-popup-container .notification-popup-wrapper .notification.error {
  background-color: var(--rojo-dark);
}
#notification-popup-container .notification-popup-wrapper .notification.success {
  background-color: var(--verde-dark);
}
#notification-popup-container .notification-popup-wrapper .notification.warning {
  background-color: var(--naranja-dark);
}
#notification-popup-container .notification-popup-wrapper .notification.tip {
  background-color: var(--azul-dark);
}
#notification-popup-container .notification-popup-wrapper .notification .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
#notification-popup-container .notification-popup-wrapper .notification .notification-title {
  font-weight: bold;
  font-size: 14px;
  margin-right: 40px;
}
#notification-popup-container .notification-popup-wrapper .notification .notification-description {
  font-size: 12px;
}
