/**
 * @file
 * Visual styles for AGBU's status messages.
 */
 .system-messages .col-md-12 {
  min-height: 0;
}
.messages {
  color: #ffffff;
  margin: 30px 0 10px;
  padding: 15px 75px;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
}
.headings-wide-spacing-enabled .messages {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.messages a {
  color: #ffffff;
  text-decoration:underline;
}
.messages--status {
  background: #7aa239;
}
.messages--error {
  background: #c53300;
}
.messages--warning {
  background: #eb8314;
}
.messages--info {
  background: #d9edf8;
}
/*Status messages symbols*/
.messages:before {
  font-family: "FontAwesome";
  font-size: 1.25em;
  position: absolute;
  left: 0;
  top: 0;
  width: 55px;
  text-align: center;
  height: 100%;
  padding-top: 13px;
}
.messages--status:before {
  content: "\f00c";
  background-color: #547f1f;
}
.messages--error:before {
  content: "\f00d";
  background-color: #980a00;
}
.messages--warning:before {
  content: "\f12a";
  background-color: #e2630b;
}
.messages--info {
  color: #31708f;
  border-color: #0074bd #0074bd #0074bd transparent;
  background-color: #d9edf7;
  background-repeat: no-repeat;
  background-position: 10px 17px;
  box-shadow: -8px 0 0 #0074bd;
  background-image: none !important;
}
.messages--info:before{
  content: "\f059";
  color: #0074bd;
}
.messages--info a {
  color: #31708f;
  text-decoration: none;
}
.messages--info a:hover {
  text-decoration: underline;
}
