  /*Flex*/
.ncsc-alert {
  padding: 1rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  /*&__icon + &__content{
  	margin-left:1rem;
  }*/ }
  .ncsc-alert__icon {
    margin-right: 1rem; }
  .ncsc-alert__content {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .ncsc-alert__text > *:last-child {
    margin-bottom: 0; }
  .ncsc-alert--note {
    background-color: #d6f7de;
    border: 1px solid #16752c; }
    .ncsc-alert--note .ncsc-alert__icon {
      color: #115821; }
  .ncsc-alert--important {
    background-color: #f9dfde;
    border: 1px solid #c62d23; }
    .ncsc-alert--important .ncsc-alert__icon {
      color: #8c2019; }
