.livewire-select {

}

.livewire-select-button {
  background-color: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*height: 100%;*/
  height: 50px;
}
.livewire-select-item-button .symbol {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}

.livewire-select-button:focus {
  outline: none;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.livewire-select-search {
  width: 100%;
  padding: 0.375rem 0.75rem;
  border: none;
  outline: none;
  border-bottom: 1px solid #ced4da;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
  height: 50px;
}
.livewire-select-item {
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  width: 100%;
  height: fit-content;
}
.livewire-select-item:hover {
  background-color: #00ACEE;
  color: white !important;
}
.livewire-select-item:hover .livewire-select-item-button , .livewire-select-item:hover .livewire-select-item-button  a{
  color: white !important;
}
.livewire-select-item-button {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
}


