.overlay-shadow {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
}
.overlay-text-shadow {
  text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
}
.transition {
  transition: 100ms ease-in-out;
}
.search-bar {
  display: inline-block;
  max-width: 400px;
  height: 35px;
}
.search-bar .ui.input {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
  padding: 0;
}
.search-bar .ui.input input {
  transition: 100ms ease-in-out;
  min-width: 300px;
}
.search-bar .button {
  transition: 100ms ease-in-out;
  width: 40px;
  font-size: 1.2rem;
}
.search-bar .button .icon {
  margin-top: -1px !important;
  margin-left: 1px !important;
}
.search-bar.collapsed .ui.input {
  box-shadow: none;
}
.search-bar.collapsed .ui.input input {
  width: 0px;
  min-width: initial;
  padding: 0;
  visibility: hidden;
}
.search-bar.collapsed .button {
  border-radius: 0.2857rem !important;
  background: none;
}
.search-bar.collapsed .button .icon {
  text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
  font-size: 1.4rem;
  margin-top: -1px !important;
}
.search-bar .results {
  display: none;
  background: white;
  position: absolute;
  width: 360px;
  top: 40px;
  font-size: 1.1rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
}
.search-bar .results .inner {
  overflow: auto;
  max-height: 400px;
}
.search-bar .results .inner table {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.search-bar .results .inner table tr {
  cursor: pointer;
}
.search-bar .results .inner table tr:hover {
  background: #cdeffc;
}
.search-bar .results .inner table tr td {
  padding: 5px 10px;
}
.search-bar .results .inner table tr .value {
  color: #999;
  text-align: right;
}
.search-bar .results .message {
  text-align: center;
  padding: 10px;
  color: #999;
}
.search-bar .results .title {
  width: 100%;
  background: #ddd;
}
.search-bar .results .title td {
  padding: 8px 10px;
}
.search-bar .results .title .count {
  float: right;
}
.search-bar .results .title .units {
  float: none;
  color: #777;
}
