@charset "UTF-8";
.zk-notification {
  width: 330px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 2px;
  position: fixed;
  right: 16px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
  -webkit-transition: opacity .3s, right .3s, top .4s, -webkit-transform .3s;
  transition: opacity .3s, right .3s, top .4s, -webkit-transform .3s;
  transition: opacity .3s, transform .3s, right .3s, top .4s;
  transition: opacity .3s, transform .3s, right .3s, top .4s, -webkit-transform .3s;
  overflow: hidden
}

.zk-notification .zk-icon-circle-check {
  color: #13ce66
}

.zk-notification .zk-icon-circle-cross {
  color: #ff4949
}

.zk-notification .zk-icon-information {
  color: $color-primary
}

.zk-notification .zk-icon-warning {
  color: $color-warning
}

.zk-notification__group span {
  font-size: 16px;
  color: #1f2d3d
}

.zk-notification__group p {
  font-size: 14px;
  line-height: 21px;
  margin: 10px 0 0;
  color: #8492a6;
  text-align: justify
}

.zk-notification__icon {
  width: 40px;
  height: 40px;
  font-size: 40px;
  float: left;
  position: relative;
  top: 3px
}

.zk-notification__closeBtn {
  top: 20px;
  right: 20px;
  position: absolute;
  cursor: pointer;
  color: #C0CCDA;
  font-size: 14px
}

.zk-notification__closeBtn:hover {
  color: #99A9BF
}

.zk-notification-fade-enter {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  right: 0
}

.zk-notification-fade-leave-active {
  opacity: 0
}
