/*$text-grey: #e6e8ed !default;*/
.search-field {
  background-color: #FFFFFF;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  position: relative;
  margin-top: 1rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.search-field:focus-within {
  border-color: #00ABDB;
  box-shadow: 0 0 0 0.2rem rgba(0, 171, 219, 0.2);
}
.search-field--dropdown {
  margin-top: 10px;
  border: 0;
  font-weight: normal;
  animation-duration: 200ms;
  animation-fill-mode: both;
  /*height: 50px;*/
  position: absolute;
  /* display: inline; */
  top: 100%;
  left: 0;
  right: 0;
  /*width: 100%;*/
  z-index: 1000;
  /*background-color: #FFF;*/
  min-width: 10rem;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid rgba(20, 20, 31, 0.15);
  border-radius: 0.3rem;
  padding: 0.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.search-field--dropdown-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  /*align-items: center;*/
  width: 100%;
  background-color: inherit;
}
.search-field--dropdown-items li {
  padding: 0.375rem 1rem;
  color: #003A51;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0.2rem;
  transition: background-color 0.1s ease-in-out;
}
.search-field--dropdown-items li:hover {
  background-color: #EAEEF1;
  cursor: pointer;
}
.search-field--dropdown-items li.active {
  background-color: #EAEEF1;
}
.search-field--dropdown-items li.disabled {
  cursor: default !important;
  color: #4C7484;
  font-weight: 400;
}
.search-field--dropdown-items li.disabled:hover {
  background-color: transparent;
}
.search-field--dropdown-header {
  margin: 0;
  padding: 1rem 1rem 0.75rem;
  display: flex;
  font-size: 12px;
  font-weight: 400;
  color: #4C7484;
  background-color: inherit;
}
.search-field--dropdown-header.clickable {
  border-radius: 0.2rem;
  transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
}
.search-field--dropdown-header.clickable:hover {
  cursor: pointer;
  color: #00ABDB;
  background-color: #EAEEF1;
}
.search-field--input {
  border: none;
  background-color: inherit;
  padding-left: 0;
}
.search-field--input:focus {
  outline: none;
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.search-field--input:read-only {
  background-color: inherit;
}
.search-field .input-group-text {
  background-color: inherit;
  border: none;
}
.search-field--items {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  align-items: center;
  width: 100%;
  gap: 0.3rem;
}
.search-field--items li .badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.375rem;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 80%;
  color: #003a51;
  background-color: rgba(7, 108, 159, 0.08);
  margin: 0 0.25rem;
  border: 1px solid #c6c9d5;
}
.search-field--items li .badge .badge-close {
  cursor: pointer;
  margin-left: 0.3rem;
  opacity: 0.6;
  font-size: 110%;
  line-height: 1;
  transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out;
  user-select: none;
}
.search-field--items li .badge .badge-close:hover {
  opacity: 1;
  color: #000;
}
.search-field--items > li {
  list-style: none;
}
.search-field--input-wrapper {
  flex-grow: 1;
}
