.alert {
  display: flex;
  align-items: flex-start;
  padding: .75rem 1.25rem;
  border-radius: 0.25em;
  color: var(--flex-text-dark);
}

.alert > .content { 
  flex-grow: 1; 
  font-size: var(--flex-text-sm);
}
.alert > .ico { margin-right: .75rem; }

.alert .material-icons { 
  font-size: var(--flex-text-base);
  line-height: 150%;
}

.alert .title {
  font-weight: 500;
  /*line-height: 135%;*/
  font-size: 115%;
  margin: 0;
}

.alert .description {
  font-weight: 400;
  line-height: 150%;
  font-size: var(--flex-text-sm);
}

.alert .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: .5rem;

}

.alert .actions > .action {
  filter: brightness(.6);
  text-decoration: none;
  font-weight: 500;
  font-size: 105%;
}

.alert .actions > .action::before {
  color: var(--flex-text-dark);
  content: "·";
  width: 1rem;
  padding: .25em;
  font-weight: normal;
}

.alert .actions > .action:first-child::before {
  display: none;
}

.alert .actions > .action:hover > span {
  text-decoration: underline;
}

.text {
  filter: brightness(0.8);
}

.normal.info { background: var(--flex-alert-bg-info) }

.outline.info { border: 1px solid var(--flex-alert-text-info); }

.text.info { color: var(--flex-alert-text-info); }

.info .material-icons { color: var(--flex-alert-text-info); }

.normal.warning { background: var(--flex-alert-bg-warning); }

.outline.warning { border: 1px solid var(--flex-alert-text-warning); }

.text.warning { color: var(--flex-alert-text-warning); }

.warning .material-icons { color: var(--flex-alert-text-warning); }

.normal.danger { background: var(--flex-alert-bg-danger); }

.outline.danger { border: 1px solid var(--flex-alert-text-danger); }

.text.danger { color: var(--flex-alert-text-danger); }

.danger .material-icons { color: var(--flex-alert-text-danger); }

.normal.success { background: var(--flex-alert-bg-success); }

.outline.success { border: 1px solid var(--flex-alert-text-success); }

.text.success { color: var(--flex-alert-text-success); }

.success .material-icons { color: var(--flex-alert-text-success); }

.normal.muted { background: var(--flex-alert-bg-muted); }

.outline.muted { border: 1px solid var(--flex-alert-text-muted); }

.text.muted { color: var(--flex-alert-text-muted); }

.muted .material-icons { color: var(--flex-alert-text-muted); }



.alert.success .action { color: var(--flex-alert-text-success); }

.alert.info .action { color: var(--flex-alert-text-info); }

.alert.warning .action { color: var(--flex-alert-text-warning); }

.alert.danger .action { color: var(--flex-alert-text-danger); }

.alert.muted .action { color: var(--flex-alert-text-muted); }