/**
Include icons in scss/css.
Usage: 
 @include icon(close);
*/
/*
Media query mixin.
Usage: 
@include media($bp-l, min)
*/
/*
Mixin to add loading spinner to button/element.
Usage: 
@include loading()
*/
.search-suggestions__message {
  background-color: transparent;
  padding: 0;
  border: 0;
}
.search-suggestions__message--top {
  font-size: 1rem;
  line-height: 140%;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}
.search-suggestions__message--bottom {
  font-size: 0.875rem;
  line-height: 140%;
  font-weight: 500;
  margin-top: 1.5rem;
  color: #1a1a1a;
}
@media only screen and (min-width: 992px) {
  .search-suggestions__message--bottom {
    margin-top: 1rem;
  }
}
.search-suggestions__message[type=submit]:hover, .search-suggestions__message[type=submit]:focus-visible {
  text-decoration: underline;
}
