// SalesCrowd Badges
$alert-color: $salescrowd-orange !default;
$error-color: $salescrowd-red  !default;
$notice-color: $salescrowd-snapchat !default;
$success-color: $salescrowd-green !default;

@mixin badge($color: $medium-gray) {
  background-color: $color;
  border-radius: 0.9em * 5;
  color: darken($color, 60%);
  display: inline-block;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1;
  padding: 0.4em 1.2em;
}

@mixin action-plan-badge($color: $medium-gray) {
  background-color: $color;
  border-radius: 50%;
  color: darken($color, 60%);
  display: inline-block;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1;
  padding: 2.9em 1.2em;
  width: 100px;
  height: 100px;
  text-align: center;
  margin: 0 1.4em 1.2em 0;
}

.badge {
  @include badge;
}

.badge-alert {
  @include badge($alert-color);
}

.badge-error {
  @include badge($error-color);
}

.badge-notice {
  @include badge($notice-color);
}

.badge-success {
  @include badge($success-color);
}

.action-plan-badge-success {
  @include action-plan-badge($success-color);
}

.action-plan-badge-disabled {
  @include action-plan-badge($light-gray);
}