@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 2px;
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  color: #333;
  font-family: "Open Sans", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* .frame .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #5CA4EA;
  display: flex;
  justify-content: center;
  align-items: center;
}
* .frame .center .input-container {
  width: 65%;
  height: 10%;
  position: relative;
}
* .frame .center .input-container input[type=text] {
  width: 100%;
  height: 100%;
  color: #5CA4EA;
  outline: none;
  border: none;
  padding: 0.7rem 2.5rem 0.7rem 0.8rem;
  font-size: 0.9rem;
  font-weight: bold;
}
* .frame .center .input-container ::placeholder {
  color: #bbd;
  font-size: 0.85rem;
}
* .frame .center .input-container button {
  position: absolute;
  right: 5%;
  top: 28%;
  width: 6%;
  height: 50%;
  outline: none;
  border: none;
  background: transparent;
  z-index: 1;
}
* .frame .center .input-container button .fa-search {
  color: #5CA4EA;
}
* .frame .center .input-container .suggestions {
  width: 100%;
  list-style: none;
  font-size: 0.8rem;
  font-weight: bold;
  color: #777;
  background: #fff;
  position: relative;
  top: 0.1rem;
  padding: 0.35rem 0;
  visibility: hidden;
}
* .frame .center .input-container .suggestions li {
  padding: 0.6rem 0.8rem;
  word-wrap: break-word;
}
* .frame .center .input-container .suggestions li:hover {
  color: #2f8be4;
}
* .frame .center .input-container .suggestions.appear {
  visibility: visible;
}

/*# sourceMappingURL=index.css.map */
