
.header-button {
  width: 50px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  color: #FFF;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  background-color: #1282c9;
  border: #1282c9 2px solid;
}

#search-form {
  -moz-transition: max-height, 0.5s;
  -o-transition: max-height, 0.5s;
  -webkit-transition: max-height, 0.5s;
  transition: max-height, 0.5s;
  position: absolute;
  margin-left: 65px;
  width: 20%;
  max-height: 0;
  overflow: hidden;
  background-color: #ccdbea;
}
#search-form.open {
  width: 550px;
  max-height: 110px;
  border: #1282c9 2px solid;
}
#search-form fieldset {
  position: relative;
  margin: 10px 60px 0 0;
  padding: 0;
  border: none;
  height: 110px;
}
#search-form input {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 50px;
}
#search-form input[type="search"] {
  width: 70%;
  height: 35px;
  padding: 0 0 0 3px;
  margin-top: 10px;
  /*background: transparent;*/
  border: none;
}
#search-form input[type="submit"] {
  position: absolute;
  left: 120px;
  bottom: 10px;
  width: 70px;
  height: 30px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFF;
  background: #1282c9;
  border: #1282c9 1px solid;
  cursor: pointer;
  border-radius: 12px;
}
#search-form input[type="reset"] {
  position: absolute;
  left: 220px;
  bottom: 10px;
  width: 70px;
  height: 30px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFF;
  background: #1282c9;
  border: #1282c9 1px solid;
  cursor: pointer;
  border-radius: 12px;
}
