.suggestions__list{
  position: absolute;
  border: 1px solid #65B2E4;
  border-top-color: #fff;
  background: #fff;
  z-index: 1000;
  max-height: 150px;
  overflow-y: auto;
  left: 0;
  top: 100%;
  padding: .5rem 0;
  box-sizing: border-box;
}
.suggestions__item{
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 5px 10px;
  text-align: left;
  cursor: pointer;
}
  .suggestions__item:hover{
    color: #65B2E4;
  }