.nw-searchbar-suggestionscontainer {
  position: absolute;
  z-index: 101;
  overflow: hidden;
  width: 100%;
  background: $white;

  @media screen and (min-width: $screen-min-sm) {
    // height: 0;
    opacity: 0;
    transition: opacity 0s, visibility 0s;
    visibility: hidden;
    will-change: opacity, visibility;

    
    &.is-active {
      transition: opacity 0.4s ease-in, visibility 0.4s ease-in;
      box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.2);
    }
  }
  
  &.is-active {
    opacity: 1;
    visibility: visible;
    // height: 430px;
  }
}

.nw-searchbar-suggestionsul {
  padding: 0 20px;
  list-style: none;

  &:last-child {
    margin-top: 25px;
  }
}

.nw-searchbar-suggestionstitle {
  margin: 30px 0 12px;
  font-size: $font-size-xs;
  font-weight: 600;

  @media screen and (min-width: $screen-min-sm) {
    margin: 17px 0 12px;
  }
}

.nw-searchbar-suggestionsitem {
  border-bottom: 1px solid rgba(242, 242, 242, 0.6);
  padding: 20px 0;
  cursor: pointer;
  font-size: $font-size-xs;

  @media screen and (min-width: $screen-min-sm) {
    padding: 16px 0;
  }

  &:hover {
    color: $searchbar-suggestionlist-hovercolor;
  }

  &:last-child {
    border: 0;
  }
}
