.event-alert {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  justify-content: space-between;
  align-items: center;

  background: var(--color-system-alerts-success, #c7ebd1);
}

.event-alert-gris {
    background: var(--color-system-alerts-success, #f4f6f1) !important;
}

.event-alert-alert {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/*PANTALLAS ESCRITORIO*/
@media (min-width: 1190px) {
}

/*PANTALLAS LAPTOPS*/
@media (max-width: 1190px) and (min-width: 720px) {
  .event-alert {
    min-width: 480px;
  width: 100%;
    max-width: 700px;
  }
}

/*PANTALLAS MEDIANAS*/

@media (max-width: 720px) and (min-width: 480px) {
}

/*PANTALLAS PEQUEÑAS*/
@media (max-width: 480px) and (min-width: 320px) {
}
