#searchInput {
  transition: width 0.7s ease-in, transform 0.7s ease-in;
}

.recent-box {
  width: 90%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background-color: #242424;
  padding: 0 1.25rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  transition: max-height 0.8s ease-in, opacity 0.8s ease-in;
}

.recent-box.active {
  max-height: 300px;
  opacity: 1;
  padding: 1.25rem;
}
