.bbr-dropdown {
  min-width: 7.5rem;
}
.bbr-dropdown:not(.bbr-dropdown--compact) {
  display: block;
}
.bbr-dropdown:not(.bbr-dropdown--compact) .dropdown-menu {
  min-width: 100%;
}
.bbr-dropdown .dropdown-menu .dropdown-content {
  overflow: auto;
}
.bbr-dropdown .bbr-dropdown__label {
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: flex-start;
}
.bbr-dropdown .bbr-dropdown__label span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
  max-width: 15rem;
}
.bbr-dropdown .bbr-dropdown__label--default span {
  color: gray;
  font-style: italic;
}
.bbr-dropdown .bbr-dropdown__label .bbr-icon:not(.bbr-dropdown-item__icon):hover {
  color: #0d6efd;
}
.bbr-dropdown .bbr-dropdown__label .bbr-icon:not(.bbr-dropdown-item__icon).bi-arrow-down {
  margin-left: auto;
}
.bbr-dropdown .bbr-dropdown__label .bbr-icon:not(.bbr-dropdown-item__icon).bi-arrow-down::before {
  transition: 0.25s ease-in-out transform;
}
.bbr-dropdown .bbr-dropdown__label .bbr-icon:not(.bbr-dropdown-item__icon).bi-plus-lg::before {
  transform: rotate(45deg);
}
.bbr-dropdown .bbr-dropdown__label.is-success--md {
  border-color: #48c78e;
}
.bbr-dropdown .bbr-dropdown__label.is-danger--md {
  border-color: #f14668;
}
.bbr-dropdown-item {
  cursor: pointer;
  user-select: none;
  white-space: normal;
  transition: 0.25s ease-in-out;
  transition-property: color, background-color;
}
.bbr-dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #0a0a0a;
}
.bbr-dropdown-item:active {
  background-color: rgba(0, 0, 0, 0.15);
  color: #0a0a0a;
}
.bbr-dropdown-item.is-active {
  background-color: #485fc7;
  color: #fff;
}
.bbr-dropdown-item__icon {
  padding-left: 0.05rem;
}
.bbr-dropdown.is-active .bbr-dropdown__label .bbr-icon.bi-arrow-down::before {
  transform: rotate(180deg);
}
.bbr-dropdown.is-up .dropdown-menu {
  top: auto;
  bottom: 100%;
}
.bbr-dropdown.is-up.is-active .bbr-dropdown__label .bbr-icon.bi-arrow-down::before {
  transform: rotate(360deg);
}
.bbr-dropdown--height-default .dropdown-menu .dropdown-content {
  max-height: 15vw;
}
.bbr-dropdown--compact {
  width: fit-content;
}
.bbr-dropdown--compact .dropdown-menu {
  min-width: 11.75rem;
}
.bbr-dropdown--disabled .bbr-dropdown__label {
  background-color: hsl(0, 0%, 96%);
  border-color: hsl(0, 0%, 96%);
  box-shadow: none;
  color: hsl(0, 0%, 48%);
  cursor: not-allowed;
}
.bbr-dropdown--disabled .bbr-dropdown__label .bbr-icon {
  pointer-events: none;
}
.bbr-dropdown--disabled .bbr-dropdown__label:hover {
  border-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 48%);
}
