.el-alert{
  width: 100%;
  padding:8px 16px;
  margin:0;
  box-sizing:border-box;
  border-radius: 4px;
  position: relative;
  background-color: $color-white;
  overflow:hidden;
  color:$color-white;
  opacity: 1;
  display: table;
  -webkit-transition: opacity .2s;  
  transition: opacity .2s;
}

.el-alert-success{
  background-color: $color-success;
}

.el-alert-info{
  background-color: $color-info;
}

.el-alert-warning{
  background-color: $color-warning;
}

.el-alert-error{
  background-color: $color-danger;
}

.el-alert-content{
  display: table-cell;
  padding-left: 8px;
}

.el-alert-icon{
  font-size: 16px;
  width: 16px;
  display: table-cell;
  color:#fff;
  vertical-align: middle;

  &.is-big{
    font-size: 28px;
    width: 28px;
  }
}

.el-alert-title{
  font-size: 13px;
  line-height: 18px;

  &.is-bold{
    font-weight: 700;
  }
}

.el-alert-closebtn{
  font-size: 12px;
  color: $color-white;
  opacity: 1;
  top:12px;
  right:15px;
  position: absolute;
  cursor: pointer;

  &.is-customed{
    font-style: normal;
    font-size: 13px;
    top: 9px;
  }
}

.el-alert-fade-enter,
.el-alert-fade-leave-active{
  opacity: 0;
}
