input.headerSearchInput {
  width: 100%;
  height: 20px;
  margin: 0;
  border: 1px solid #000000;
  -moz-border-radius: 15px;
  border-radius: 15px;
  float: right;
  background: #b8b8b8 url('https://www.enviro.com/custom_content/images/whitesearch.png'); 
  background-repeat: no-repeat;
  background-position: 5px 50%;
  font-size: 12px;
  padding-left: 22px;
  color: #393939;
  padding-top: 3px;
  padding-bottom: 3px;
}
 /*
#width {
  -webkit-transition-property: width;
  -moz-transition-property: width;
  -o-transition-property: width;
  transition-property: width;
  background: #b8b8b8 url('https://www.enviro.com/custom_content/images/whitesearch.png'); 
  background-repeat: no-repeat;
  background-position: 5px 50%;
}
 
#width:hover {
  width: 60px;
}
 */
#inputWidth-duration {
  -webkit-transition-property: width, background;
  -moz-transition-property: width, background;
  -o-transition-property: width, background;
  transition-property: width, background;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;


}
 
#inputWidth-duration:focus {
  width: 120px;
  background: #ffffff url('https://www.enviro.com/custom_content/images/greysearch.png');
  background-repeat: no-repeat;
  background-position: 5px 50%;
  padding-left: 22px;
  padding-top: 3px;
  padding-bottom: 3px;
}
/* 
#width-duration-easein {
  -webkit-transition-property: width;
  -moz-transition-property: width;
  -o-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
 
#width-duration-easein:focus {
  width: 150px;
  height: 15px;
}
 
#width-delay {
  -webkit-transition-property: width;
  -moz-transition-property: width;
  -o-transition-property: width;
  transition-property: width;
  -webkit-transition-delay: 2s;
  -moz-transition-delay: 2s;
  -o-transition-delay: 2s;
  transition-delay: 2s;
}
 
#width-delay:hover {
  width: 80px;
}
*/