.search-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 20px;
}

.search-form {
  border: 1px solid #EEE;
  padding: 10px;
}
.search-form form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.search-form select, .search-form .search-multi-choice-button, .search-form input[type=text] {
  border: 1px solid #EEE;
  padding: 5px;
  border-radius: 5px;
  outline: none;
}
.search-form .search-multi-choice-button {
  cursor: pointer;
  position: relative;
}
.search-form .search-multi-choice-widget {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #eee;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
  z-index: 10;
  border-radius: 5px;
}
.search-form .search-multi-choice-widget div {
  white-space: nowrap;
  padding: 5px;
  cursor: pointer;
}
.search-form .search-multi-choice-widget div:hover {
  background: #eee;
}
.search-form .search-multi-choice-widget.hidden {
  display: none;
}

.search-results-wrapper {
  flex: 1;
}
.search-results-wrapper .search-results-empty {
  padding: 10px;
}
.search-results-wrapper .search-item {
  border: 1px solid #EEE;
  padding: 10px;
  margin-bottom: 10px;
}
.search-results-wrapper .search-item .search-item-content-provider {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}
.search-results-wrapper .search-item .search-item-content-provider .search-item-info {
  width: 70%;
}
.search-results-wrapper .search-item .search-item__title {
  font-weight: bold;
}
.search-results-wrapper .search-item .search-item-specialty {
  font-weight: bold;
  margin: 5px 0;
}
.search-results-wrapper .search-item .search-item-buttons {
  font-weight: bold;
  margin: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.search-results-wrapper .search-item .search-item__image img {
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
}
.search-results-wrapper.search-results-loading {
  opacity: 0.5;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}

.search-pagination {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.search-pagination .search-pagination__list {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.search-pagination .search-pagination__list .search-pagination__item:not(.search-pagination-item-active) {
  cursor: pointer;
}
.search-pagination .search-pagination__list .search-pagination-item-active {
  font-weight: bold;
}

/*# sourceMappingURL=directory-search.css.map*/