/* Labels */
.abrs-label,
.awebooking-label {
  padding: 2px 10px;
  border-radius: 15px;
  display: inline-block;
  box-sizing: border-box;
  color: #343434;
  background-color: #f7f7f7;

  &.square,
  &.squared {
    border-radius: 1px;
  }

  &--info {
    background-color: #deebff;
  }

  &--success {
    color: #03551f;
    background-color: #cafcc2;
  }

  &--error,
  &--danger {
    color: #881f25;
    background-color: #ffdbde;
  }

  &--warning {
    color: #b17419;
    background-color: #fff8ba;
  }
}

/* Badges */
.abrs-badge {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  padding: 4px 10px 3px;;
  background-color: transparent;
  box-shadow: inset 0 0 0 1px #bbc9d3;
  color: #657886;
  font-weight: 600;
  border-radius: 15px;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1.1;

  /* Styles */
  &--primary {
    color: #0086e6;
    box-shadow: inset 0 0 0 1px #0095ff;
  }

  &--intermediary {
    color: #cb8b0b;
    box-shadow: inset 0 0 0 1px #f2a60d;
  }

  &--positive {
    color: #29a3a3;
    box-shadow: inset 0 0 0 1px #00b8b8;
  }

  &--negative {
    color: #e60000;
    box-shadow: inset 0 0 0 1px #ff4d4d;
  }

  &--bronze {
    color: #bf5940;
    box-shadow: inset 0 0 0 1px #cea297;
  }

  &--gold {
    color: #b3814d;
    box-shadow: inset 0 0 0 1px #d0af8b;
  }
}
