.el-badge {
  display: inline-flex;
  align-items: center;
  font-size: 1em;
  height: 1.8em;
  justify-content: center;
  line-height: 1.8em;
  white-space: nowrap;
  background-color: #ef53e6;
  color: #e2d5e1;
  border-radius: 0.9em;
  min-width: 1.8em;
  text-align: center;
  padding: 0 0.5em;

  el-icon,
  .el-icon {
    top: 0;
  }

  el-icon + span {
    margin-left: 0.25em;
  }
}

.el-status {
  position: relative;

  .el-badge {
    position: absolute;
    z-index: 999;
    transition: opacity 0.6s;

    &.is-hidden {
      opacity: 0;
      transition: opacity 0.6s;
    }
  }

  sup.el-badge:first-child {
    top: 0;
  }

  sub.el-badge {
    bottom: 0;
  }

  .el-icon + sup,
  el-icon + sup {
    right: -0.25em;
  }

  .el-icon + sub,
  el-icon + sub {
    right: -0.25em;
  }
}
