.imoveis-search-form {
  position: relative;
  width: 2rem;
  height: 2rem;
}

.imoveis-search-field[type="search"] {
  background-color: transparent;
  border: none;
  border-radius: 3rem;
  cursor: pointer;
  height: 2rem;
  margin: 0;
  padding: 0 2.5rem 0 1rem;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: width 400ms ease;
  transition: width 400ms ease;
  width: 2rem;
}

.imoveis-search-form-icon {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  background-color: var(--wp--custom--color--primary);
  background-image: url(../svg/search.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1rem;
  border-radius: 3rem;
  z-index: 10;
  -webkit-transition: background 400ms ease;
  transition: background 400ms ease;
}

.imoveis-search-field[type="search"]:focus {
  background-color: #fff;
  border: 2px solid var(--wp--custom--color--secondary);
  cursor: text;
  outline: 0;
  width: 230px;
}

.imoveis-search-field[type="search"]:focus + .imoveis-search-form-icon,
.imoveis-search-form:hover .imoveis-search-form-icon {
  background-color: var(--wp--custom--color--secondary);
}

.imoveis-search-form .imoveis-search-submit[type="submit"] {
  display: none;
}
