* { margin: 0; padding: 0; box-sizing: border-box; }
.nd-body {
  font-family: Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #222;
}
.nd-form {
  position: relative;
  width: 37%;
  margin: 5% auto 1%;
  font-size: 0;
}
.nd-input {
  border: 1px solid #bcbcbc;
  width: 75%;
  height: 38px;
  padding-left: 10px;
  font-size: 18px;
  vertical-align: middle;
  outline: none;
}
.nd-input:focus { border-color: #0070ba; }
.nd-submit {
  width: 25%;
  height: 38px;
  background: #0070ba;
  vertical-align: middle;
  cursor: pointer;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nd-submit:hover { background: #005b96; }
.nd-suggest {
  position: absolute;
  top: 38px;
  left: 0;
  width: 75%;
  background: #fff;
  border: 1px solid #ccc;
  border-top: 0;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, .1);
  z-index: 9999;
  display: none;
}
.nd-suggest[data-open="true"] { display: block; }
.nd-row {
  padding: 0 .6em;
  line-height: 26px;
  font-size: 16px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.nd-row.is-active, .nd-row:hover { background: #f0f0f0; }
.nd-foot {
  position: fixed;
  bottom: 1%;
  right: 1%;
  left: 0;
  text-align: right;
}
.nd-foot li { display: inline-block; margin-right: 10px; }
.nd-foot a { color: grey; font-size: 11px; text-decoration: none; }
.nd-foot a:hover { color: #0070ba; }
