/* Search bar */
#search-wrapper {
  box-sizing: border-box;
  width: 100%; /* parent width + 2 rem */
  padding-left: 16px;
  padding-right: 16px;
}
#search-wrapper input {
  height: 27px;
}
/* remove default */
#search-wrapper .input-group input:focus {
  outline: none;
  box-shadow: none;
}
/* custom outline around both input + append */
#search-wrapper .input-group:focus-within {
  outline: 2px solid #4a90e2;
  border-radius: 4px;
}