.local-search {
  text-align: left;
  position: relative;
  width: 100%;
}

.local-search-input-cls {
  position: absolute;
  width: 100%;
  height: 100%;
  /*padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #CCC;*/
  color: #666;
  font-size: 1em;
}

#menu-item input {
  padding: 0;
  border-width: 1px;
}

#local-search-close {
  content: 'x';
  position: absolute;
  right: 10px;
  top: 10px;
  background: #fff;
  color: #888;
  border-radius: 100%;
  line-height: 20px;
  text-align: center;
  font-size: 16px;
  font-family: consolas;
  border: 1px solid #CCC;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-style: normal;
  font-weight: normal;
  transform: rotateZ(0);
  transition: all 0.3s;
}

#local-search-close:hover {
  border-color: #666;
  color: #222;
  transform: rotateZ(180deg);
  transition: all 0.3s;
}

.local-search-result-cls {
  position: fixed;
  z-index: 99;
  width: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.local-search-result-cls .local-search-empty {
  color: #888;
  line-height: 44px;
  text-align: center;
  display: block;
  font-size: 16px;
  font-weight: normal;
}

.local-search-result-cls ul {
  width: 360px;
  max-height: 450px;
  min-height: 0;
  height: auto;
  overflow-y: auto;
  border: 1px solid #CCC;
  padding: 10px 20px;
  background: #FFF;
  box-shadow: 1px 2px 4px #CCC;
}

.local-search-result-cls ul li {
  text-align: left;
  border-bottom: 1px solid #CCC;
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 30px;
  font-weight: normal;
}

.local-search-result-cls ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.local-search-result-cls ul li a {
  margin-top: 20px;
  font-size: 16px;
}

.local-search-result-cls ul li p {
  margin-top: 10px;
  font-size: 14px;
  max-height: 124px;
  overflow: hidden;
}
.local-search-result-cls ul li em.search-keyword {
  color: #ea6753;
  font-weight: 900;
}


.local-search-plugin .local-search-input-cls {
  opacity: 0.6;
  /*width: 160px;*/
  transition: all 0.3s;
}

.local-search-plugin .local-search-input-cls:hover {
  opacity: 1;
  width: 200px;
  transition: all 0.3s;
}

.local-search-plugin .icon {
  position: relative;
  left: -30px;
  color: #999;
  cursor: pointer;
}


.search-result-title {
  color: #2ca6cb;
  font-weight: 900;
  font-size: 25px!important;
}

.search-result-title:hover {
  color: #ea6753;
  text-decoration: underline;
}

.search-result {
  color: #413f3f;
}