// Badges
// ? Bootstrap use bg-label-variant and bg color for solid and label style, hence we have not created mixin for that.
// *******************************************************************************

.badge {
  line-height: 1.05;
}
// Badge Center Style

.badge-center {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  @include badge-size($badge-height, $badge-width, $badge-center-font-size);
  i {
    font-size: 0.8rem;
    &::before {
      font-size: 0.8rem;
    }
  }
}
