/* instant Visual Feedback image size. */
img.unibox-vis {
  width: 70px;
}

/* each search suggest line. */
.unibox-selectable {
  border-bottom: 1px dotted #ddd;
  clear: both;
  position: relative;
  font-family: sans-serif;
  font-size: 14px;
  text-align: left;
}

.unibox-selectable .unibox-extra {
  cursor: default;
}

.unibox-selectable:hover .unibox-extra {
  color: #fff;
}

.unibox-selectable.active, .unibox-selectable:hover {
  background-color: #0078bf;
  color: #fff;
  cursor: pointer;
}
.unibox-selectable.active a, .unibox-selectable.active span, .unibox-selectable.active .unibox-extra, .unibox-selectable:hover a, .unibox-selectable:hover span, .unibox-selectable:hover .unibox-extra {
  color: #fff;
}
.unibox-selectable .unibox-selectable-img-container {
  width: 60px;
  float: left;
  margin-right: 6px;
}

.unibox-selectable img {
  max-width: 50px;
  max-height: 50px;
}

.unibox-selectable .unibox-selectable-img-container img {
  width:40px !important;
  height:40px !important;
  border:1px solid #aaa !important;
}

/* Highlight of search keywords in results. */
.unibox-selectable span span {
  font-weight: bold;
}

.unibox-ca {
  clear: both;
}

#unibox-invisible {
  visibility: hidden;
  position: relative;
  text-align: left;
  /** needs to get the same styles as the search box so that width of the text within the search box can be computed */
  height:0;
}

/* suggest box */
#unibox-suggest-box {
  position: absolute;
  display: none;
  border: 1px solid #E5E5E5;
  background-color: #fff;
  overflow: hidden;
  z-index: 1500;
}

#unibox-suggest-box a {
  text-decoration: none;
}

#unibox-suggest-box > div > div {
  padding: 6px 8px;
}
#unibox-suggest-box h4 {
  margin-left: 8px;
  margin-top: 6px;
  font-size: 18px;
}

.unibox-ivf img {
  max-width: 15px;
  width:15px;
  height:15px;
  position: absolute;
  top: -28px;
  left:0;
  margin: auto;
  transition:.3s ease-out;
  -webkit-transition:0.3s ease-out;
  -webkit-transform:rotateX(-90deg) translateY(100%);
  transform:rotateX(-90deg) translateY(100%);
}

.unibox-ivf img.l {
    -webkit-transform:rotateX(0deg) translateY(0%);
    transform:rotateX(0deg) translateY(0%);
}