.guest-app .autocomplete-items {
  margin-left: 20px;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
  display: flex;
  flex-direction: row;
}
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}
.autocomplete-active {
  background-color: #e9e9e9 !important;
}
.ac-img {
  display: block;
  background-image: url(../images/icon/gp-spin.png) !important;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  padding-left: 10px;
  padding-right: 10px;
}
.ac-wrapper {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
}
.ac-main-text {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-secondary-text {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 600px){
  .guest-app .autocomplete-items {
    margin-left: 10px;
  }
}