.search_forms_container {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 2;
}

.search_forms_container .container {
  height: auto;
  background-color: #1e272e;
/*   margin: 20vh auto; */
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4rem;
  padding: 10px;
}

.search_forms_container .search__box {
  float: left;
  width: 0;
  height: 4rem;
  background: none;
  color: #f7f7f7;
  font-size: 1.5rem;
  border-radius: 2rem;
  outline: none;
  border: none;
  position: relative;
  opacity: 1;
  transition: all .75s ease-in;
  cursor: pointer;
}


.search_forms_container  .search__icon {
  box-sizing: border-box;
  float: right;
  font-size: 2.5rem;
  display: inline-block;
  margin-left: .8rem;
  margin-top: 0;
  cursor: pointer;
  position: absolute;
  color: #fa983a;
  transition: all .25s ease-in;
  padding: .7rem;
  border-radius: 50%;
}

.search_forms_container  .container:hover > .search__box {
  width: 85%;
  padding: 0 1rem;
}

.search_forms_container  .container:hover > .search__icon {
  background-color: #eee;
}

.search_forms_container  .show {
  width: 85%;
  border: 1px solid red;
}