.overlay_search {
  position: fixed;
  height: 0;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  right: 0;
  z-index: 10000001;
  display: none;
  transition: all .7s ease;

}

#search_container {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 70px;
  background: #fff;
  color: #222;
  box-shadow: 0 5px 5px -5px #333;
  border-bottom: solid 1px #515151;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s ease;

}

#search_bar {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

#search_icon {
  width: 10%;
  text-align: center;
}


#search_input {
  flex-grow: 1;
}

#search_bar input {
  background: #f5f5f5;
  border: none;
  border-radius: 4px;
}

#search_bar ::-webkit-input-placeholder {
  color: #ff156a;
  opacity: 1 !important;
}

#search_bar ::-moz-placeholder {
  color: #ff156a;
  opacity: 1 !important;
}

#search_bar :-ms-input-placeholder {
  color: #ff156a;
  opacity: 1 !important;
}

#search_bar :-moz-placeholder {
  color: #ff156a;
  opacity: 1 !important;
}


#search_bar input:focus {
  outline: none !important;
  border: 1px solid #fff;

}

#search_bar_hide_button {
  text-align: center;
  cursor: pointer;
  color: #ff156a;
  width: 10%
}

.search_icon {
  text-align: center;
}

.search_icon .fa {
  font-size: 24px;
}

#search_results {

  overflow-y: auto;
  max-height: 100vh;
  background: rgba(15, 24, 33, 0.2);
  color: #fff;
  padding-bottom: 100px;
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

}

#search_results span {
  /*font-weight: 800;*/
  /*font-style: italic;*/
}

#search_results .game_title {
  font-size: 12px;
}

#search_results .game_button {
  font-size: 11px;
}

.search_icon .fa {
  transition: all .3s ease;
}

.search_icon .fa:hover {
  color: #ff156a;
}

@media screen and (max-width: 767px) {

  .search_icon {
    text-align: center;
  }

  .search_icon .fa {
    font-size: 20px;
  }

  #search_results {
    width: 100%;
  }

}
