#wrap {
	display: inline-block;
	height: 30px;
	float: right;
}

input[type="text"] {
  height: 20px;
  
}

.search-UI {
  display: inline-block;
  font-size: 14px;
  font-weight: 100;
  border: none;
  outline: none;
  color: #AEAEAE;
  padding: 3px;
  padding-right: 30px;
  width: 0px;
  position: absolute;
  top: 10px;
  right: 135px;
  background: none;
  z-index: 3;
  transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
  cursor: pointer;
}

.search-UI:focus:hover {
  border-bottom: 1px solid #BBB;
}

.search-UI:focus {
  width: 140px;
  z-index: 1;
  border: 1px solid #BBB;
  cursor: text;
  padding-left: 20px;
}

input[type="submit"] {
  height: 20px;
  width: 20px;
  display: inline-block;
  color:red;
  float: right;
  background: url(search.svg) center center no-repeat;
  text-indent: -10000px;
  border: none;
  position: absolute;
  top: 14px;
  /*right: 100px;*/
  z-index: 2;
  cursor: pointer;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity .4s ease;
}

input[type="submit"]:hover {
  opacity: 0.8;
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset; 
	}
