.chip { border: 1px solid #d1d5db; background:#f3f4f6; color:#374151; }
.chip.active { background:#166534; color:#fff; border-color:#166534; }

.chip .icon { margin-right: .5rem; font-size: 1.1em; line-height: 1; }
.result-title .icon { margin-right: .5rem; font-size: 1.25em; line-height: 1; }

#resultList { padding-bottom: 7rem; }

#newSearchFloating {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 50;
  background: #44403c;
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  font-weight: 700;
  padding: .85rem 1rem;
  font-size: 1.05rem;
  transition: opacity 180ms ease, transform 180ms ease, bottom 180ms ease;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
#newSearchFloating.showFab { opacity: 1; transform: translateY(0); pointer-events: auto; }
#newSearchFloating:hover { background:#1f2937; }
#newSearchFloating.avoid-footer { bottom: 7.5rem; }

@media (min-width: 1024px) {
  #newSearchFloating {
    left: calc(50% + 32rem + 1rem);
    right: auto;
    bottom: auto;
    top: 40vh;
    padding: 1rem 1.25rem;
    font-size: 1.15rem;
    transform: translateY(0);
  }
  #newSearchFloating.avoid-footer { top: 30vh; }
}

@media (max-width: 380px) { #newSearchFloating { bottom: 2rem; font-size: 1.1rem; } }

/* Reviews UI */
.caret { display:inline-block; transition: transform 160ms ease; }
.caret.rotated { transform: rotate(180deg); }
