#global-alerts,
#preview-alert-wrapper .details-wrapper {
  background: #841c1c;
}
#local-alerts {
  background: #c14d00;
}

#global-alerts .container,
#local-alerts .container,
#preview-alert-wrapper .details-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.global-alert,
.local-alert {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #FFF;
  font-size: 19px;
  padding: 15px 30px;
  line-height: 1.42857;
  border-right: 1px solid #FFF;

  flex-basis: 25%;
  flex-grow: 1;
}

.global-alert:nth-child(3n+1),
.local-alert:nth-child(3n+1) {
  padding-left: 0;
}

.global-alert:nth-child(3n),
.local-alert:nth-child(3n) {
  padding-right: 0;
  border-right: 0;
}

.global-alert:last-child,
.local-alert:last-child {
  padding-right: 0;
  border-right: 0;
}

.global-alert .glyphicon,
.local-alert .glyphicon {
  color: #FFF;
  font-size: 1.2em;
  margin: 0 0 0 15px;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: 0;
  cursor: pointer;
}

.global-alert .glyphicon:hover,
.local-alert .glyphicon:hover {
  opacity: 0.5;
}

.global-alert a,
.local-alert a {
  color: #FFF !important;
  text-decoration: underline;
  font-weight: bold;
}
.global-alert a:hover,
.local-alert a:hover {
  opacity: 0.5;
}
.global-alert p,
.local-alert p {
  margin: 0 10px 0 0;
}
.global-alert p:last-of-type,
.local-alert p:last-of-type {
  display: inline;
}

.global-alert .fa,
.local-alert .fa {
  font-size: 2.1em;
  margin-right: 15px;
  display: block;
  flex-shrink: 0;
  min-width: 40px;
}
.global-alert .alert-inner,
.local-alert .alert-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  position: relative;
}
.global-alert .alert-inner .content,
.local-alert .alert-inner .content {
  flex-grow: 1;
  padding-right: 25px;
}

.global-alert .more-link,
.local-alert .more-link {
  display: inline-block;
}

.cu-alert .edit-link {
  margin-left: 5px;
  margin-top: -2px;
}

.global-alert h2,
.local-alert h2 {
  font-size: 1em;
  margin: 0;
  color: #FFF;
  line-height: 1.42857;
}

@media (max-width: 767px) {
  #global-alerts .container,
  #local-alerts .container,
  #preview-alert-wrapper .details-wrapper {
    display: block;
  }
  .global-alert,
  .local-alert {
    border-right: 0;
    border-bottom: 1px solid #FFF;
    font-size: 16px;
    padding: 5px 0;
  }
  .global-alert .fa,
  .local-alert .fa {
    margin-right: 10px;
    min-width: 30px;
  }
  .global-alert .glyphicon,
  .local-alert .glyphicon {
    right: -3px;
    top: 7px;
  }
  .global-alert:last-child,
  .local-alert:last-child {
    border-bottom: 0;
  }

  #alerts-wrapper {
    position: absolute;
    top: 42px;
    width: 100%;
    z-index: 10;
  }
}

@media (min-width: 768px) {
  .global-alert,
  .local-alert {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}