@import 'main';

$badge_medium_size: 25px;
$badge_small_size: 18px;

.badge-box {
  display: inline-block;

  .badge {
    display: none;
    min-width: $badge_medium_size;
    height: $badge_medium_size;
    border: 3px solid $color_paper;
    padding: 0 5px;
    text-align: center;
    @include border-radius(14px);
    position: absolute;
    top: -5px;
    right: -12px;
    background-color: $color_primary;
    color: $color_paper;
    font-size: 11px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: 0.4px;

    &.active {
      display: block;
    }

    &.type-empty {
      @include border-radius(50%);
      width: $badge_small_size;
      min-width: $badge_small_size;
      height: $badge_small_size;
    }

    &.type-double-digit {
      width: $badge_small_size;
      @include border-radius(50%);
      padding: 0;
    }
  }
}
