@import url("variables.css");

.search-window {
  position: absolute;
  background-color: var(--primary-bg-color);
  width: 100%;
  height: calc(100% - 133px);
  z-index: 99999;
  top: 133px;
  border-top: solid 1px #d3d3d3;
}
.search-window .search-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  justify-content: center;
  margin: 50px auto;
  display: flex;
}

.search-window .search-form input {
  background: #fff url(../assets/images/search.png) no-repeat 15px center;
  height: 50px;
  line-height: 50px;
  border: 0 none;
  font-size: 1.4rem;
  width: 60%;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 50px;
  padding-right: 20px;
  border: 0 none;
  border-radius: 0;
}
.search-window .search-form button {
  background-color: #ffd72f;
  width: 10%;
  border: 0 none;
  font-size: 1.3rem;
  transition: 0.8s;
  cursor: pointer;
  min-width: 100px;
}

.search-window .search-form button:hover {
  background-color: #fff;
}
