.search_container {
  width: 100%;
  height: 100vh;
  background-color: var(--41);
  display: none;
  position: fixed;
}

.npl-search-close-items {
  font-size: var(--fifteen);
  font-weight: var(--menuWeight);
  color: var(--df);
}

.adding_search {
  position: fixed;
  z-index: 10;
  display: block;
}

.search_menu {
  width: 100%;
  margin: 2.2% 1.8% 0 1.8%;
}

.search_logo {
  width: 60px;
}

.search_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search_btn {
  width: 80px;
  transform: rotate(270deg);
  margin-left: 12px;
  margin-top: 85px;
  overflow: hidden;
  cursor: pointer;
}

.search_btn li a {
  text-decoration: none;
  color: var(--gray);
}

.search_close_dummy {
  position: absolute;
  top: 0;
  transform: translateY(0);
  transition: 0.2s cubic-bezier(0.7, 0, 0.33, 1);
}

.search_close_show {
  opacity: 1;
  transform: translateY(0) !important;
  transition: 0.2 cubic-bezier(0.7, 0, 0.33, 1);
}

.search_close {
  opacity: 1;
  transform: translateY(150%);
  transition: 0.25s cubic-bezier(0.7, 0, 0.33, 1);
}

@media screen and (max-width: 1024px) {
  .search_close {
    opacity: 1 !important;
    transform: translateY(0);
  }

  .search_close_dummy {
    display: none;
  }
}

.search_btn li {
  list-style: none;
}

.npl-search-close-item {
  cursor: pointer;
}

.npl-search-close-overflow:hover .search_close_dummy {
  cursor: pointer;
  opacity: 1;
  transform: translateY(-110%);
  transition: 0.25s cubic-bezier(0.7, 0, 0.33, 1);
}

.search_form {
  display: flex;
  margin: 50px auto;
  width: 70%;
  gap: 20px;
  align-items: end;
}

.search_form button {
  border-radius: 50%;
  outline: none;
  border: none;
  height: var(--xlButton);
  width: var(--xlButton);
  background-color: transparent;
}

.search_form button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search_collection {
  width: 70%;
  margin: 0 auto;
  display: flex;
  gap: 5px;
  align-items: center;
}

@keyframes search {
  0%,
  25% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.search_collection button {
  /* border-radius: 50%; */
  border: none;
  outline: none;
  background-color: transparent;
  /* order: 2; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.search_collection button img {
  height: var(--smButton);
  width: var(--smButton);
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
  margin-top: 1px;
}

.search_collection h2 {
  font-family: var(--barlow);
  color: var(--gray2);
  font-size: var(--eighteen);
  font-weight: var(--xl);
}

@media screen and (max-width: 500px) {
  .search_form {
    width: 100%;
    margin-left: 10px;
  }

  .search_collection {
    width: 100%;
    justify-content: center;
  }
}

form input {
  width: 70%;
  height: 25px;
  background-color: transparent;
  /* padding: 5px; */
  outline: none;
  border: none;
  border-bottom: 1px solid var(--gray2);
  color: var(--df);
  font-size: var(--sixteen);
  font-family: var(--libre);
  font-style: italic;
}

.search_form input::placeholder {
  font-size: var(--sixteen);
  font-family: var(--libre);
  color: var(--df);
  font-style: italic;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.search_form input:focus::placeholder {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
