
/**
  Badge
 */
/* TODO: Remove not used styles or mode to another class */
.ask-badge {
    position: relative;
  
    > .badge {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--bg-color);
      color: var(--white);
      font-size: 12px;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      border-radius: 50%;
      box-shadow: 0 2px 6px -1px rgb(0 0 0 / 50%);
    }
  
    > .badge.-primary {
      --bg-color: var(--asksuite-orange);
    }
  
    > .badge.-secondary {
      --bg-color: var(--grey-800);
    }
  
    > .badge.-top {
      top: -10px;
    }
    > .badge.-bottom {
      bottom: -10px;
    }
  
    > .badge.-left {
      left: -10px;
    }
  
    > .badge.-right {
      right: -10px;
    }
  
    > .badge.-small {
      width: 18px;
      height: 18px;
      font-size: 10px;
    }
    > .badge.-regular {
      width: 22px;
      height: 22px;
      font-size: 11px;
    }
  
    > .badge.-large {
      width: 28px;
      height: 28px;
      font-size: 12px;
    }
  }
  