header .search-icon {
  position: relative;
  display: inline-block;
  float: left;
  z-index: 101;
  font-size: 20px;
  padding: 20px 10px;
  color: black;
}
header .search-icon i {
  width: 20px;
  height: 20px;
  float: left;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
header .search-icon:hover {
  background: transparent;
  color: #10427c;
}
header form.searchform {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: white;
  z-index: -1;
  opacity: 0;
}
header form.searchform.active {
  z-index: 100;
  opacity: 1;
}
header form.searchform input {
  height: 60px;
  width: 100%;
  padding: 10px;
  font-size: 30px;
  border: none;
  float: left;
  line-height: 1;
  outline: none;
}
header.right .navbar-collapse form input {
  padding-left: 60px !important;
}
