@import url('https://fonts.googleapis.com/css?family=Thasadith');
/* Module code */
.form--search {
  margin: 0;
  padding: 0;
}

.form--light-search {
  position: relative;
  width: 30%;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .form--light-search {
    width: 90%;
  }
}

.input--search,
.item--result {
  font-family: 'Open Sans', Helvetica, Geneva, Tahoma, sans-serif;
  font-size: 100%;
}

.input--search {
  font-size: 1.5rem;
  line-height: 1.5;
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 240px;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  padding: 15px 10px;
  color: #777;
  border: none;
  background: #fff;
}

.input--search:focus {
  border: none;
  outline: none;
}

::-webkit-input-placeholder {
  color: #c0c0c0;
}

::-ms-input-placeholder {
  color: #c0c0c0;
}

::placeholder {
  color: #c0c0c0;
}

.form--search__result {
  position: absolute;
  width: 100%;
  margin: 0;
}

/* Block one item result */
.item--result {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  color: #333;
  border-right: none;
  border-bottom: 1px dashed #dfdfdf;
  border-left: none;
  background: #fff;
}

.item--result.last,
.item--result:last-child {
  border-bottom: none;
}

.item--result:hover,
.item--result.focus {
  cursor: pointer;
  transition: all .2s ease-in-out ease-in-out;
  color: #666;
  background: #bbbe64;
}

.item--result:hover .data-1,
.item--result:hover .data-2,
.item--result.focus .data-1,
.item--result.focus .data-2 {
  color: #f2f2f2;
}

.item--result .data-0 {
  font-weight: 600;
  float: left;
  margin: 0 0 3px 0;
  color: #666;
}

.item--result .data-1,
.item--result .data-2 {
  font-weight: normal;
  display: block;
  color: #c0c0c0;
}

.item--result .data-1 {
  float: right;
}

.item--result .data-2 {
  clear: both;
}

.item--result span:nth-child(n+4) {
  font-size: .8em;
  display: block;
  width: 100%;
  margin: 5px 0;
}
