#searchjet-searchbox-container{
  position: relative;
}
#searchjet-form {
  max-width: 500px;
  margin: 1.5rem auto;
  font-family: Arial, sans-serif;
}

#searchjet-query {
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

#searchjet-results {
  margin-top: 12px;
  background: #fff;
  position: absolute;
  z-index: 9999;
  padding: 0;
  width: 100%;
  
}

.searchjet-hit {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
  font-size: 16px;
  line-height: 1.4;
}

.searchjet-hit:last-child {
  border-bottom: none;
}

.searchjet-hit:hover {
  background-color: #f0f4ff;
  color: #000;
  cursor: pointer;
}

.searchjet-hit a{
  font-size: 17px;
  text-decoration: none;
  color: #303030;
}

.searchjet-see-all {
  padding: 12px 16px;
  text-align: right;
  font-weight: bold;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
}

.searchjet-see-all a {
  text-decoration: none;
  font-size: 15px;
  color: #0073aa;
}