.ftAlert {
  position: relative;
  margin: 10px 0;
  padding: 10px 10px 10px 40px;
  font-size: 14px;
  font-weight: 400;
  color: #2b2b2b;
  text-align: left;
  border-radius: 4px;
  border: 1px solid #fff;
  background: none no-repeat 10px 50%;
  background-size: 20px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.ftAlert.success {
  color: #398b03;
  border-color: #75b975;
  background-color: #dff0d8;
  background-image: url(../images/ft_alerts/success.png);
}

.ftAlert.warning {
  color: #b17a01;
  border-color: #ffd293;
  background-color: #fcf8e3;
  background-image: url(../images/ft_alerts/warning.png);
}

.ftAlert.error {
  color: #833;
  border-color: #c39595;
  background-color: #f2dede;
  background-image: url(../images/ft_alerts/error.png);
}

.ftAlert.info {
  color: #1a4773;
  border-color: #80d0e8;
  background-color: #d9edf7;
  background-image: url(../images/ft_alerts/info.png);
}

.ftAlert.loading {
  color: #1a4773;
  border-color: #cacaca;
  background-color: #f5f5f5;
  background-image: url(../images/ft_alerts/loading.gif);
}

.ftAlert .close {
  float: right;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1;
  font-size: 21px;
  font-weight: 700;
  color: #000;
  opacity: 0.2;
  cursor: pointer;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.ftAlert .close:hover, .ftAlert .close:focus {
  opacity: 0.5;
}