#cumple-noti {
  position: fixed;
  bottom: 20px;
  left: -400px;
  z-index: 9999;
  transition: left 1s ease, opacity 1s ease;
}

.cumple-content {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cumple-content img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.cumple-burbuja {
  font-size: 16px;
  color: #1a284d;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#cumple-noti.despedir {
  left: -400px !important;
  opacity: 0;
}