.kit-badge {
  position: relative;
  display: inline-block;

  &-content {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);

    &.danger {
      background: var(--ui-kit-color-red-1);
    }

    &.default {
      background: var(--ui-kit-color-grey-13);
    }

    &.success {
      background: var(--ui-kit-color-green-1);
    }

    &.processing {
      background: var(--ui-kit-color-teal);
    }

    &.warning {
      background: var(--ui-kit-color-orange);
    }
  }

  &-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    height: 20px;
    min-width: 20px;
    color: var(--ui-kit-color-white);
    font-size: 12px;
    font-weight: 500;
    border-radius: 16px;
    box-sizing: border-box;

    &.default {
      color: var(--ui-kit-color-grey-10);
    }
  }

  &-status {
    width: 6px;
    height: 6px;
    border: 2px solid var(--ui-kit-color-grey-13);
    border-radius: 50%;
  }
}
