/**
 * @file
 * Visual styles for Style+'s status messages.
 */
 .system-messages .col-md-12 {
  min-height: 0;
}
.messages {
  color: #ffffff;
  margin: 30px 0;
  padding: 15px 15px 15px 65px;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
}
.messages a {
  color: #ffffff;
}
.messages--status {
  background: #54ad76;
}
.messages--error {
  background: #c13347;
}
.messages--warning {
  background: #ee8232;
}

/*Status messages symbols*/
.messages:before {
  font-family: "FontAwesome";
  font-size: 16px;
  line-height: 33px;
  position: absolute;
  left: 15px;
  top: 10px;
  width: 35px;
  height: 35px;
  text-align: center;
  border: 2px solid #ffffff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.messages--status:before {
  content: "\f00c";
}
.messages--error:before {
  content: "\f00d";
}
.messages--warning:before {
  content: "\f12a";
}
