.pks-suggest{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 6px);
  z-index:9999;
  max-height:min(52vh,420px);
  overflow-x:hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
  touch-action:pan-y;
  -webkit-overflow-scrolling:touch;
  background:#fff;
  border:1px solid #cbd5cf;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.16);
  text-align:left;
}
.pks-suggest[hidden]{display:none}
.pks-suggest-item{
  display:flex;
  width:100%;
  min-height:52px;
  gap:12px;
  justify-content:space-between;
  align-items:center;
  border:0;
  border-bottom:1px solid #edf1ee;
  background:#fff;
  padding:14px 16px;
  font:inherit;
  text-align:left;
  color:#1d2a25;
  cursor:pointer;
  touch-action:pan-y;
  -webkit-tap-highlight-color:transparent;
}
.pks-suggest-item:last-child{border-bottom:0}
.pks-suggest-item small{color:#66756e;white-space:nowrap}
.pks-suggest-item:hover,.pks-suggest-item.is-active{background:#eef5f1}
.pks-suggest-item span{overflow:hidden;text-overflow:ellipsis}
@media (max-width:700px){
  .pks-suggest{max-height:46vh;border-radius:14px}
  .pks-suggest-item{min-height:58px;padding:16px}
}
