/* SEARCH */
.search__form {
  position: relative;
  margin-top: 15px;
}

.search__form input {
  font-size: 18px;
  border-radius: 5px;
  outline: none;
  border: none;
  padding: 7px 10px;
  padding-right: 160px;
  width: 100%;
  border: 2px solid rgb(var(--white-color), 1);
}

.search__form input:focus {
  border-radius: 5px 5px 0 5px;
  border-bottom: solid 2px rgb(var(--main-color), 1);
}

.search__form button {
  position: absolute;
  right: 0;
}

.search_card {
  border-right: 20px solid rgb(var(--main-color), 1);
}

.search_card:hover {
  background-color: rgb(var(--main-color), 1) !important;
  border-color: rgb(var(--gold-color), 1);
}

.search_card:hover * {
  color: rgb(var(--white-color), 1) !important;
}

.not_results {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 400px);
  width: 100%;
}