// customize the dropdown

#autosuggest {
  position: relative;
}
.autosuggest__results-container {
    position: relative;
    z-index: 999;
    .autosuggest__results {
      position: absolute;
      background-color: $white;
      width: 100%;
      margin-top: 10px;
      overflow-y: auto;
      border-radius: 0.5rem;
      max-height: 40vh;
      box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), 0 5px 15px 0 rgba(0, 0, 0, 0.08) !important;
      ul {
        padding-left: 0;
        margin-bottom: 0;
        li {
          list-style: none;
          padding: 0.75rem 1rem;
          &:hover,
          &.autosuggest__results-item--highlighted {
            background: $gray-200;
          }
          .detail {
            line-height: 1.2rem;
          }
        }
        .autosuggest__results-before {
          color: $primary;
          font-weight: 600;
        }
      }
    }
    
}
.autosuggest__noresults{
  position: absolute;
  background-color: $white;
  width: 100%;
  margin-top: 10px;
  overflow-y: auto;
  border-radius: 0.5rem;
  max-height: 40vh;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), 0 5px 15px 0 rgba(0, 0, 0, 0.08) !important;
  padding: 10px;
  z-index: 1;
  
}