.list-group {
    z-index: 2001;
    scrollbar-width: none;
    white-space: nowrap;
}
 
.list-group-item {
  transition-duration: 0.2s;
}

.list-group-item:hover{
  background-color:rgb(235, 235, 235);
}

.searchResults {
    height: 20vh;
    z-index: 2001;
    position: relative;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: scroll;
    white-space: nowrap;
    scrollbar-width: none;
}

.searchResults::-webkit-scrollbar {
    display: none;
  }


.searchResults {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }


  @media only screen and (max-width: 1080px){
    .list-group-item {
      width: 20rem;
    }
  }

.btn-success {
  background-color: #1e7b4b;
  border: 1px solid #1e7b4b;
}
.btn-success:hover{
  border: 1px solid #155735;
  background-color: #155735;
}

.list-group-item:hover {
  cursor: pointer;
}