.tfs-react-search-box {
  display: inline-block;
}

.tfs-react-search-box input::-ms-clear {
  width: 0;
  height: 0;
}

.tfs-react-search-box input[placeholder] {
  text-overflow: ellipsis;
}

.tfs-react-search-box .remove-search-icon {
  position: relative;
  right: 40px;
  cursor: pointer;
  visibility: hidden;
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
}

.tfs-react-search-box .search-icon {
  position: relative;
  right: 35px;
  cursor: pointer;
}

.tfs-react-search-box .visible {
  visibility: visible;
}

.tfs-react-search-box .input-error-tip {
  font-size: 12px;
  font-weight: normal;
  white-space: normal;
  margin-right: 0px;
  max-width: 100%;
}

.tfs-react-search-box .input-error-tip .text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  display: block;
}

.tfs-react-search-box .input-error-tip.invisible {
  opacity: 0;
}

.tfs-react-search-box .search-results {
  overflow: auto;
  position: absolute;
  background-color: rgba( 255, 255, 255 ,  1 );
  background-color: rgba( var(--palette-neutral-0,255, 255, 255) ,  1 );
  border-top: none;
  border:  1px solid;
  border-color: rgba( 200, 200, 200 ,  1 );
  border-color: rgba( var(--palette-neutral-20,200, 200, 200) ,  1 );
  z-index: 20000;
  width: 100%;
  max-height: 250px;
}

.tfs-react-search-box .search-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tfs-react-search-box .search-results ul li:hover {
  background-color: rgba( 239, 246, 252 ,  1 );
  background-color: rgba( var(--palette-primary-tint-40,239, 246, 252) ,  1 );
  cursor: pointer;
}

.tfs-react-search-box .search-results ul li.selected {
  background-color: rgba( 239, 246, 252 ,  1 );
  background-color: rgba( var(--palette-primary-tint-40,239, 246, 252) ,  1 );
  border:  1px dashed;
  border-color: rgba( 0, 0, 0 ,  1 ) !important;
  border-color: rgba( var(--palette-neutral-100,0, 0, 0) ,  1 ) !important;
  font-weight: bold !important;
}

.tfs-react-search-box input.search-text {
  padding-right: 35px;
}
