.NameInput{
  padding: 5px;
     font-size: 16px;
     border-width: 1px;
     border-color: #CCCCCC;
     background-color: #FFFFFF;
     color: #000763;
     border-style: solid;
     border-radius: 11px;
}
.searchbutton {
  font-family: arial;
  color: #14396A !important;
  font-size: 18px;
  padding: 2px 10px;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 11px;
  border: 1px solid #000763;
  background: #ffffff;
}
.searchbutton:hover {
  color: #000763 !important;
  background: solid;
}
.select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}    .select select {
      font-family: 'Arial';
      display: inline-block;
      width: 100%;
      cursor: pointer;
      padding: 10px 15px;
      outline: 0;
      border: 1px solid #000763;
      border-radius: 1px;
      background: #e0e0e0;
      color: #000763;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
  }
      .select select::-ms-expand {
          display: none;
      }
      .select select:hover,
      .select select:focus {
          color: #000763;
          background: #ffffff;
      }
      .select select:disabled {
          opacity: 0;
          pointer-events: none;
      }
.select_arrow {
  position: absolute;
  top: 30px;
  right: 15px;
  width: 0px;
  height: 0px;
  border: solid #000763;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.select select:hover ~ .select_arrow,
.select select:focus ~ .select_arrow {
  border-color: #000763;
}
.select select:disabled ~ .select_arrow {
  border-top-color: #000763;
}