/* Tooltip container */
.datalist {
  position: absolute;
  background-color: blue;
  border: 1px solid blue;
  border-radius: 0 0 5px 5px;
  border-top: none;
  font-family: sans-serif;
  width: 900px;
  padding: 5px;
  max-height: 10rem;
  overflow-y: auto;
  overflow-x:visible;  
}

.option {
  background-color: white;
  padding: 4px;
  color: blue;
  margin-bottom: 1px;
   font-size: 18px;
  cursor: pointer;
  width: 900px;
  overflow-x:visible;
}