
q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}


.field_autocomplete.tagged input {
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.field_autocomplete {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  line-height: 1;
  min-width: 300px;
  /*display: inline;*/
}
.input-group .field_autocomplete {
  display: flex;
  flex-grow: 1;
}
.field_autocomplete *, .field_autocomplete *:before, .field_autocomplete *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
.field_autocomplete .tag {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  background: #72c4cb;
  cursor: pointer;
  color: black;
  overflow: hidden;
  border: 1px solid #cccc00;
  display: flex;
  justify-content: center;
  align-items: center;
}
.field_autocomplete .tag:hover {
  background: yellow;
}
.field_autocomplete.tagged input {
  border: none;
}
.field_autocomplete .options_list {
  /*width: 600px;*/
  max-height: 400px;
  overflow-y: auto;
  text-align: left;
  position: absolute;
  z-index: 30000000;
  background: white;
  top: 35px;
  left: 3px;
  right: 3px;
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.field_autocomplete .options_list .item_list {
  display: block;
  padding: 0.6em;
}
.field_autocomplete .options_list .item_list strong {
  font-weight: bold;
}
.field_autocomplete .options_list .item_list.selected {
  background: rgba(0, 145, 202, 0.54);
}
.field_autocomplete.openup .options_list {
  top: auto;
  bottom: 100%;
  -moz-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.6);
}
