/**
 * @file
 * Visual styles for Startupgrowth Lite's status messages.
 */
 .system-messages .col-md-12 {
  min-height: 0;
}
.messages {
  color: #ffffff;
  margin: 30px 0 10px 0;
  padding: 15px 75px;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
}
.messages a {
  color: #ffffff;
  text-decoration: underline;
}
.messages a:hover {
  text-decoration: none;
}
.messages--status {
  background: #7aa239;
}
.messages--error {
  background: #c53300;
}
.messages--warning {
  background: #eb8314;
}

/*Status messages symbols*/
.messages--status:before {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #547f1f;
  width: 55px;
  text-align: center;
  height: 100%;
  padding-top: 13px;
}
.messages--error:before {
  content: "\f00d";
  font-family: "FontAwesome";
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #980a00;
  width: 55px;
  text-align: center;
  height: 100%;
  padding-top: 15px;
}
.messages--warning:before {
  content: "\f12a";
  font-family: "FontAwesome";
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #e2630b;
  width: 55px;
  text-align: center;
  height: 100%;
  padding-top: 15px;
}
