@import "../../constants/style/color";

.counter {
  color: #fff;
  background: $secondary;
  border-radius: 8px;
  padding: 1px 4px;
  min-width: 16px;
  font-size: 11px;
  height: 16px;
  display: inline-flex;
  line-height: 0;
  align-items: center;
  justify-content: center;

  &.disabled {
    background: $secondary;
  }
}

.counterSizeXs, .counterSizeS {
  height: 14px;
  border-radius: 7px;
  font-size: 9px;
  min-width: 14px;
}

.counterSizeM, .counterSizeL, .counterSizeXl {
  height: 16px;
  border-radius: 8px;
}

.intentPrimary {
  background: #f90;
}
.intentDefault {
  background: $primary;
}
.intentDanger {
  background: $danger-light;
}
