.local-search-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(255, 255, 255, .91);
  color: #333;
  z-index: 9999;
  border-radius: 5px;
  overflow: scroll;
}

#local-search-input {
  outline: none;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  border: 0;
  color: #222;
  background-color: #f6f9fc;
  border-radius: 2px;
}

.search-result-list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.search-result-list>li {
  margin-top: 15px;
  border-bottom: 1px solid #ddd;
  transition: all ease .3s;
}

.search-result-list>li:hover {
  border-bottom: 1px solid gray;
}

.search-result-title {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

time.search-result-date {
  font-size: 14px;
  color: #5d738d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search-keyword {
  font-weight: normal;
  color: #c00;
}

@media (min-width: 1080px) {
  .popup-btn-close {
    position: absolute;
    top: 30px;
    left: 50px;
    /* border: 1px solid #5d738d; */
    padding: 5px 20px;
    border-top-left-radius: 8px;
    cursor: pointer;
    transition: all ease .3s;
    background-color: #f6f9fc;
    color: #5d738d;
  }

  .popup-btn-close:hover {
    background: #151515;
    /* opacity: .9; */
    color: #fff;
  }
}

@media (max-width: 1080px) {
  .popup-btn-close {
    font-size: 0;
    position: fixed;
    right: 20px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    background: #f6f9fc;
    border-radius: 50%;
    box-shadow: 1px 1px 5px #888;
    cursor: pointer;
    z-index: 5;
  }

  .popup-btn-close::after {
    content: '←';
    color: #5d738d;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    width: 100%;
    height: 100%;
    line-height: 50px;
    text-align: center;
  }
}

a.search-result {
  /* display: -webkit-box; */
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: initial;
  padding: 16px 16px 16px 20px;
  background-color: #f6f9fc;
  border-radius: 2px;
  margin-bottom: 16px;
}

.search-result-left {
  flex: 1;
}

.search-result-right {
  margin-left: 8px;
}

.local-search-header.clearfix {
  margin-top: 25px;
}

.local-search-input-wrapper {
  outline: none;
  border-bottom: 1px solid #151515;
  width: 100%;
  margin-bottom: 0px;
  /* padding-left: 32px; */
  font-weight: 400;
  font-size: 20px;
  border: 0;
  color: #222;
  background-color: #f6f9fc;
  border-radius: 2px;
  display: inline-flex;
}

.search-result-list p {
  margin: 8px 0px 0px 0px !important;
  color: #5d686f;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.search-result-list a {
  color: #151515 !important;
  text-decoration: none;
}

.search-result-list a:hover {
  background-color: #e3f2fd ;
}

#local-search-result {
  height: calc(100vh - 110px);
  overflow: auto;
}

a.popup-trigger {
    cursor: pointer;
}
