.searchOutput {
  position: absolute;
  top: 100px;
  left: 0px;
  width: 100%;
  height: calc(100vh - 100px);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: start;
  transition: all 0.3s;
  visibility: hidden;
  z-index: -100;
}

.searchOutput .wrapper {
  width: 80%;
  max-width: 1200px;
  height: 60%;
  background-color: var(--header-bg-color);
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 0px 0px 20px 20px;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(-20px);
}

.searchOutput .wrapper a {
  width: 100%;
  background-color: rgb(255, 236, 236);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 10px;
  border-radius: 5px;
  font-family: 'Nunito';
  font-size: 1rem;
  transition: all 0.4s;
  opacity: 0;
  transform: translateX(-20px);
}

.searchOutput .wrapper a:not([href]) {
  background-color: rgba(199, 199, 199, 0.6);
}


@media(max-width:700px) {
  .searchOutput {
    top: 110px;
    height: calc(100vh - 110px);
  }
}


.searchOutput.active{
  z-index: 1000;
  visibility: visible;
  background-color: rgba(80, 80, 80, 0.6);
}

.searchOutput.active .wrapper {
  opacity: 1;
  transform: translateY(0px);
}
.searchOutput.active .wrapper a{
  opacity: 1;
  transform: translateX(0px);
}

.searchOutput.active .wrapper a.animate{
  animation: slideIn 0.5s ease;
}


@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
