.zk-alert {
  width: 100%;
  padding: 8px 16px;
  margin: 0;
  box-sizing: border-box;
  border-radius: 4px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  color: #fff;
  opacity: 1;
  display: table;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  .zk-alert__description {
    color: #fff;
    font-size: 12px;
    margin: 5px 0 0
  }
  &--success {
    background-color: #13ce66
  }
  &--info {
    background-color: $color-primary
  }
  &--warning {
    background-color: $color-warning
  }
  &--error {
    background-color: #ff4949;
  }
}

.zk-alert__content {
  display: table-cell;
  padding-left: 8px
}

.zk-alert__icon {
  font-size: 16px;
  width: 16px;
  display: table-cell;
  color: #fff;
  vertical-align: middle
}

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

.zk-alert__title {
  font-size: 13px;
  line-height: 18px
}

.zk-alert__title.is-bold {
  font-weight: 700
}

.zk-alert__closebtn {
  font-size: 12px;
  color: #fff;
  opacity: 1;
  top: 12px;
  right: 15px;
  position: absolute;
  cursor: pointer
}

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

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