#search {
  margin-top: 2px;
  margin-bottom: 0;
  margin-right: 1px;
  position: relative;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
  outline: none;
  height: 70px;
  width: 100%;
  padding: 4px 2px;
  background: url(../images/search_bg.png) repeat 0 0;
}
#search::-ms-clear {
  display: none;
}
#search input {
  border-radius: 5px;
  font: 400 18px/24px 'Open Sans', sans-serif;
  color: #999999;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-appearance: none;
  border: none;
  box-shadow: none;
  outline: none;
  height: 60px;
  width: 71%;
  background: #ffffff;
  padding: 18px 0 18px 20px;
  display: inline-block;
  float: left;
  box-sizing: border-box;
  padding-right: 20px;
  /* Landscape phones and down */
}
@media (max-width: 979px) {
  #search input {
    float: none;
    width: 100%;
    margin-bottom: 5px;
  }
}
@media (max-width: 480px) {
  #search input {
    height: 40px;
    font-size: 12px;
    line-height: 18px;
    padding: 6px 0 6px 15px;
  }
}
#search input::-ms-clear {
  display: none;
}
#search input::-webkit-input-placeholder {
  color: #999999;
}
#search input:-moz-placeholder {
  /* Firefox 18- */
  color: #999999;
}
#search input::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999;
}
#search input:-ms-input-placeholder {
  color: #999999;
}
#search a {
  position: relative;
  display: inline-block;
  font: 700 27px/60px 'Open Sans', sans-serif;
  cursor: pointer;
  color: #ffffff;
  width: 28%;
  background: #247ebb;
  float: right;
  border-radius: 5px;
  border: 1px solid #48754b;
  text-align: center;
  box-shadow: 1px 3px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#search a:hover {
  background: #515c6c;
}
@media (max-width: 979px) {
  #search a {
    font: 700 17px/40px 'Open Sans', sans-serif;
    float: none;
    width: 100%;
  }
}
