@import url("https://fonts.googleapis.com/css?family=Questrial");

body {
  font-family: "Questrial", sans-serif;
}

.outer {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 400px;
  width: 400px;
  margin-top: -200px;
  margin-left: -200px;
  color: #263238;
  background: #00B8D4;
  border-radius: 2px;
  box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

.search {
  position: absolute;
  width: 260px;
  top: 180px;
  left: 70px;
  font-size: 0;
  background: #FFFFFF;
  box-shadow: 4px 8px 12px 0 rgba(0, 0, 0, 0.1);
}
.search .searchfield {
  float: left;
  width: 205px;
  height: 40px;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  font-size: 13px;
  font-weight: 600;
  padding-left: 15px;
  background-color: #FFFFFF;
  color: #819CA9;
}
.search .button {
  position: relative;
  width: 39px;
  height: 42px;
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  background: #FFFFFF;
  color: #00B8D4;
  font-size: 20px;
  padding: 0;
  cursor: pointer;
}
.search .button span {
  position: relative;
  top: -1px;
}
.search .suggestions {
  background-color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  padding: 0 15px;
  margin: 0;
  list-style: none;
  color: #546E7A;
}
.search .suggestions.active {
  border-top: 1px solid #00B8D4;
}
.search .suggestions li {
  margin: 18px 0;
  padding: 0;
  cursor: pointer;
}
.search .suggestions li:hover {
  color: #00B8D4;
}
.search .suggestions li b {
  font-weight: 600;
}

.clearfix {
  *zoom: 1;
}
.clearfix::before {
  content: " ";
  display: table;
}
.clearfix::after {
  content: " ";
  display: table;
  clear: both;
}

*:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: #819CA9;
}

:-moz-placeholder {
  color: #819CA9;
  opacity: 1;
}

::-moz-placeholder {
  color: #819CA9;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #819CA9;
}

:placeholder-shown {
  color: #819CA9;
}
