/*
 * Component: alert
 * ----------------
 */
.alert {
  border-radius: 3px;
}
.alert h4 {
  font-weight: 600;
}
.alert .icon {
  margin-right: 10px;
}
.alert .close {
  color: #000;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.alert .close:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.alert a {
  color: #fff;
  text-decoration: underline;
}
.alert-success {
  border-color: #008d4c;
}
.alert-danger,
.alert-error{
  border-color: #d73925;
}
.alert-warning {
  border-color: #e08e0b;
}
.alert-info {
  border-color: #00acd6;
}

.alert-success,
.alert-danger,
.alert-error,
.alert-warning,
.alert-info{
  color: #fff !important;
}

.alert-danger,
.alert-error{
  background-color: #dd4b39 !important;
}

.alert-warning,
.label-warning{
  background-color: #f39c12 !important;
}

.alert-info{
  background-color: #00c0ef !important;
}

.alert-success{
  background-color: #00a65a !important;
}

/*--------------------------------------------------------------------------
+   Alert Style
--------------------------------------------------------------------------*/
.alert {
  padding-left: 45px;
  margin-top: 15px;
  margin-left: 15px;
  position: relative;
}

.alert h1,
.alert h2,
.alert h3,
.alert h4,
.alert h5,
.alert h6{
  color: #fff !important;
}

.alert > .fa,
.alert > .glyphicon {
  position: absolute;
  left: -15px;
  top: -15px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  background: inherit;
  border: inherit;

    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  -webkit-box-shadow: 0 0 8px #9in99;
  -moz-box-shadow: 0 0 8px #999;
  box-shadow: 0 0 8px #999;
  color: 0 0 8px #999;
}

.alert .list-group-item {
  background-color: transparent;
}
/*--------------------------------------------------------------------------*/

