@charset "UTF-8";
/* CSS Document */

.suggest-wrapper {
  display: none;
  background: #fff;
  z-index: 2;
  margin-top: 6px;
  border-radius: 2px;
  position: absolute;
  width: 700px;
  box-shadow: rgba(12, 3, 7, 0.14902) 0 0 13px 0;
}

.suggest-wrapper ul li:hover {
  background-color: #f8f8f8;
  cursor: pointer;
}

.suggest-wrapper ul li:hover a {
  text-decoration: none;
}

.suggest-wrapper ul li:last-child a {
  padding-bottom: 18px;
}

.suggest-link {
  color: #333;
  font-size: 14px;
  padding: 17px 20px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggest-button {
  border: none;
  width: 100%;
  height: 52px;
  border-top: 1px solid #d3d3d3;
  font-size: 14px;
  color: #4AB3DF;
  cursor: pointer;
  background: #fff;
}

.suggest-button:hover {
  background-color: #f8f8f8;
}

.search-criteria-histories-wrapper {
  display: none;
  background: #ffffff;
  z-index: 3;
  margin-top: 6px;
  border-radius: 2px;
  position: absolute;
  width: 700px;
  max-height: 460px;
  box-shadow: rgba(12, 3, 7, 0.14902) 0 0 13px 0;
  padding: 14px 16px;
  z-index: 10000;
}

.search-criteria-wrapper ul {
  overflow-y: scroll;
}

.search-criteria-item {
  display: inline-flex;
  align-items: center;
  width: 100%;
}

.search-criteria-remove-icon {
  cursor: pointer;
}

.search-criteria-link {
  color: #333;
  display: block;
  width: 100%;
  font-size: 13px;
  overflow: hidden;
  padding: 12px 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-criteria-history-title {
  font-size: 12px;
  color: #8e8e8e;
  margin-bottom: 24px;
}